Skip to content
Felix
  • Topics
    • My List
    • Felix Guide
    • Asset Management
    • Coding and Data Analysis
      • Data Analysis and Visualization
      • Financial Data Tools
      • Python
      • SQL
    • Credit
      • Credit Analysis
      • Restructuring
    • Financial Literacy Essentials
      • Financial Data Tools
      • Financial Math
      • Foundations of Accounting
    • Industry Specific
      • Banks
      • Chemicals
      • Consumer
      • ESG
      • Insurance
      • Oil and Gas
      • Pharmaceuticals
      • Project Finance
      • Real Estate
      • Renewable Energy
      • Technology
      • Telecoms
    • Introductory Courses
    • Investment Banking
      • Accounting
      • Financial Modeling
      • M&A and Divestitures
      • Private Debt
      • Private Equity
      • Valuation
      • Venture Capital
    • Markets
      • Economics
      • Equity Markets and Derivatives
      • Fixed Income and Derivatives
      • Introduction to Markets
      • Options and Structured Products
      • Other Capital Markets
      • Securities Services
    • Microsoft Office
      • Excel
      • PowerPoint
      • Word & Outlook
    • Professional Skills
      • Career Development
      • Expert Interviews
      • Interview Skills
    • Risk Management
    • Transaction Banking
    • Felix Live
  • Pathways
    • Investment Banking
    • Asset Management
    • Equity Research
    • Sales and Trading
    • Commercial Banking
    • Engineering
    • Operations
    • Private Equity
    • Credit Analysis
    • Restructuring
    • Venture Capital
    • CFA Institute
  • Certified Courses
  • Ask An Instructor
  • Support
  • Log in
  • Topics
    • My List
    • Felix Guide
    • Asset Management
    • Coding and Data Analysis
      • Data Analysis and Visualization
      • Financial Data Tools
      • Python
      • SQL
    • Credit
      • Credit Analysis
      • Restructuring
    • Financial Literacy Essentials
      • Financial Data Tools
      • Financial Math
      • Foundations of Accounting
    • Industry Specific
      • Banks
      • Chemicals
      • Consumer
      • ESG
      • Insurance
      • Oil and Gas
      • Pharmaceuticals
      • Project Finance
      • Real Estate
      • Renewable Energy
      • Technology
      • Telecoms
    • Introductory Courses
    • Investment Banking
      • Accounting
      • Financial Modeling
      • M&A and Divestitures
      • Private Debt
      • Private Equity
      • Valuation
      • Venture Capital
    • Markets
      • Economics
      • Equity Markets and Derivatives
      • Fixed Income and Derivatives
      • Introduction to Markets
      • Options and Structured Products
      • Other Capital Markets
      • Securities Services
    • Microsoft Office
      • Excel
      • PowerPoint
      • Word & Outlook
    • Professional Skills
      • Career Development
      • Expert Interviews
      • Interview Skills
    • Risk Management
    • Transaction Banking
    • Felix Live
  • Pathways
    • Investment Banking
    • Asset Management
    • Equity Research
    • Sales and Trading
    • Commercial Banking
    • Engineering
    • Operations
    • Private Equity
    • Credit Analysis
    • Restructuring
    • Venture Capital
    • CFA Institute
  • Certified Courses
Felix
  • Data
    • Company Analytics
    • My Filing Annotations
    • Market & Industry Data
    • United States
    • Relative Valuation
    • Discount Rate
    • Building Forecasts
    • Capital Structure Analysis
    • Europe
    • Relative Valuation
    • Discount Rate
    • Building Forecasts
    • Capital Structure Analysis
  • Models
  • Account
    • Edit my profile
    • My List
    • Restart Homepage Tour
    • Restart Company Analytics Tour
    • Restart Filings Tour
  • Log in
  • Ask An Instructor
    • Email Our Experts
    • Felix User Guide
    • Contact Support

Data Modeling in Power BI

Learn how to model data in Power BI, including how to create a calculated column in Power BI, how to use DAX Functions, and how to use the Data Model view to join tables so you can produce visuals using fields from more than one table. This module uses Power BI Desktop can only be installed on Windows, the workouts in this module are not applicable for Mac users.

Unlock Your Certificate   
 
0% Complete

6 Lessons (18m)

Show lesson playlist
  • Description & Objectives

  • 1. Creating a Calculated Column

    04:26
  • 2. Using an IF Function

    04:49
  • 3. Introduction to Measures

    04:38
  • 4. Joining Tables in The Data Model

    03:38
  • 5. Data Modelling in Power BI | Interactive Video

    00:00
  • 6. Data Modelling in Power BI Tryout


Prev: Customizing Visuals with Power BI Next: Producing Effective Dashboard in Power BI Service

Creating a Calculated Column

  • Notes
  • Questions
  • Transcript
  • 04:26

Creating a calculated column.

Downloads

Creating-A-Calculated-Column-WorkoutCreating-A-Calculated-Column-Workout-Solution-StepsCreating-A-Calculated-Column-Report-Solution

Glossary

Calculated Column Formula Functions Mathematical Calculations Syntax
Back to top
Financial Edge Training

© Financial Edge Training 2025

Topics
Introduction to Finance Accounting Financial Modeling Valuation M&A and Divestitures Private Equity
Venture Capital Project Finance Credit Analysis Transaction Banking Restructuring Capital Markets
Asset Management Risk Management Economics Data Science and System
Request New Content
System Account User Guide Privacy Policy Terms & Conditions Log in
Transcript

Creating a Calculated Column.

Calculated column is an additional column of information which we can put into our data set by writing a formula.

Formula has a number of components all of which must be written correctly so that the calculation can be performed. This is known as the syntax in Power BI the first part of the formula syntax is the name we want to give to the new column, followed by an equal sign. So if we're creating a new column, which will calculate the amount of commission a Trader will receive on a trade we might start it with commission value equals.

One of the most common types of formula is a mathematical equation, which uses common operators such as add ,subtract, multiply or divide.

If we're adding this type of formula, then the syntax requires us to use symbols to indicate which operator is to be used. So for example, if we want to multiply we'll use an asterisk or if we divide we'll use a forward slash.

Finally, we need some values to calculate with we often get these values in existing fields if we're referencing a field name in a formula. It must be written in the following way the name of the table, which the field belongs to, followed by the field name itself, and it must be in square brackets.

So if we're using a field called stock cash value in a table called trades it would be written in the following way.

Here we have an example of how all that is brought together a column which stores the stock cash value, another column which tells us what the commission rate the Traders are getting on that value is, and so we may want to find out what the commission value is for each trade. That would require a multiplication of the stock cash value by the trader commission rate, so our formula syntax would be commission value equals the trade table stock cash value field multiplied by the trades table Trader commission field. Let's do a workout and see how to create such a calculated column in Power BI.

So I'm just going to get some data from my Excel workbook, I'll take module 6 lesson 1a workout.

And I'll load a table called trades into my report.

So when we create a calculated column we do it from the data view. So I'm just using the icon down the left-hand side here to switch to data view and I can see all of the columns in my table and I want to add a new one in so I'm going to use the ribbon, the table tools ribbon here, to click on new column.

And I'll get a new column, it's always added in at the end, we can see it here and I have a formula bar that allows me to write in the formula. So I can see that it suggested a column name for me, so I'm going to replace that, I want to call it something different. I'm going to call it commission rate.

And follow that with an equal sign.

So I then need to build my formula and I want to take the value from the stock cash value field first of all, so if I start typing it what happens is we get an auto complete. So this is a list of current field names some functions and I can easily select what I want from here. It's much easier than trying to actually type it in the more I type the less I have to select from. I can see here I've got the field that I need and I can use my arrow keys and then tap it in or i can just click on it and it will be inserted for me and we can see the syntax, the field name in square brackets, and the actual table name in front of that. Now I know I want to multiply so I'm using an asterix there to indicate multiplication and I want to multiply it by the value in the trader commission column. So again, if I just start typing Trader commission and I can see here's the field I want so I'll use during arrow and tab and it goes and what I'll do is now I press return or enter.

And that will check the Syntax for me. And as long as the syntax is correct, it will then give me the result of my formula. I now I have a new field which I can then use in my report. If I click to report view, I'll see it sits here alongside all the other fields slightly different icon just indicate that it's a calculation not an ordinary field value.

Content Requests and Questions

You are trying to access premium learning content.

Discover our full catalogue and purchase a course Access all courses with our premium plans or log in to your account
Help

You need an account to contact support.

Create a free account or log in to an existing one

Sorry, you don't have access to that yet!

You are trying to access premium learning content.

Discover our full catalogue and purchase a course Access all courses with our premium plans or log in to your account

You have reached the limit of annotations (10) under our premium subscription. Upgrade to unlock unlimited annotations.

Find out more about our premium plan

You are trying to access content that requires a free account. Sign up or login in seconds!

Create a free account or log in to an existing one

You are trying to access content that requires a premium plan.

Find out more about our premium plan or log in to your account

Only US listed companies are available under our Free and Boost plans. Upgrade to Pro to access over 7,000 global companies across the US, UK, Canada, France, Italy, Germany, Hong Kong and more.

Find out more about our premium plan or log in to your account

A pro account is required for the Excel Add In

Find out more about our premium plan

Congratulations on completing

This field is hidden when viewing the form
Name(Required)
This field is hidden when viewing the form
Rate this course out of 5, where 5 is excellent and 1 is terrible.
Were the stated learning objectives met?(Required)
Were the stated prerequisite requirements appropriate and sufficient?(Required)
Were the program materials, including the qualified assessment, relevant and did they contribute to the achievement of the learning objectives?(Required)
Was the time allotted to the learning activity appropriate?(Required)
Are you happy for us to use your feedback and details in future marketing?(Required)

Thank you for already submitting feedback for this course.

CPE

What is CPE?

CPE stands for Continuing Professional Education, by completing learning activities you earn CPE credits to retain your professional credentials. CPE is required for Certified Public Accountants (CPAs). Financial Edge Training is registered with the National Association of State Boards of Accountancy (NASBA) as a sponsor of continuing professional education on the National Registry of CPE Sponsors.

What are CPE credits?

For self study programs, 1 CPE credit is awarded for every 50 minutes of elearning content, this includes videos, workouts, tryouts, and exams.

CPE Exams

You must complete the CPE exam within 1 year of accessing a related playlist or course to earn CPE credits. To see how long you have left to complete a CPE exam, hover over the locked CPE credits button.

What if I'm not collecting CPE credits?

CPE exams do not count towards your FE certification. You do not need to complete the CPE exam if you are not collecting CPE credits, but you might find it useful for your own revision.


Further Help
  • Felix How to Guide walks you through the key functions and tools of the learning platform.
  • Playlists & Tryouts: Playlists are a collection of videos that teach you a specific skill and are tested with a tryout at the end. A tryout is a quiz that tests your knowledge and understanding of what you have just learned.
  • Exam: If you are collecting CPE points you must pass the relevant CPE exam within 1 year to receive credits.
  • Glossary: A glossary can be found below each video and provides definitions and explanations for terms and concepts. They are organized alphabetically to make it easy for you to find the term you need.
  • Search function: Use the Felix search function on the homepage to find content related to what you want to learn. Find related video content, lessons, and questions people have asked on the topic.
  • Closed Captions & Transcript: Closed captions and transcripts are available on videos. The video transcript can be found next to the closed captions in the video player. The transcript feature allows you to read the transcript of the video and search for key terms within the transcript.
  • Questions: If you have questions about the course content, you will find a section called Ask a Question underneath each video where you can submit questions to our expert instructor team.