When building a report from scratch in Power BI Desktop, one of the most common questions you can ask yourself is, should I create a calculated column, or a measure? The correct answer is (as usual), it depends. Before deciding on which one to use, why would you create a measure or calculated column in the first place? 

Measures and calculated columns are essential for in-depth analysis in your reports. Without them, it can be difficult to find useful insights and create useful reports. In this blog, we’ll discuss background info, the differences between measures and calculated columns, and some advantages and disadvantages of each.

Calculated columns and measures in Power BI featured image

 

Background info: Evaluation context

Before we begin discussing the differences between calculated columns and measures in Power BI, we have to learn about context. Learning about evaluation context will help us understand some major differences between calculated columns and measures. Evaluation context in Power BI is made up of filter context and row context.

Create a free account, or login.

Unlock this tutorial and hundreds of other free visual analytics resources from our expert team.

Already have an account? Sign In

Name
Password
This field is for validation purposes and should be left unchanged.

Explore unlimited access to all offerings.

See membership options.

Filter Context

Filter context is the set of filters applied to the data prior to a formula being evaluated in Power BI Desktop. This includes slicers, the filters pane, and rows and columns in table visuals. Measures yield different results for each row because the context is different in each row. In the below image, the filter context for the fourth row of the Sales column is made up of the Country (Canada) filter in the Filters pane and the corresponding fourth row in the Product column (Paseo).

Filter context

 

Row Context

Row context is what enables Power BI to calculate a formula at the row level. In a table, a formula is evaluated for each row. In the table view, we can see that Gross Sales are calculated in every row by multiplying the Units Sold and Sale Price columns. 

table view gross sales

Calculated columns have inherent row context, but measures do not. However, you can force a measure to iterate row by row using DAX; more on this later!

 

Creating measures in Power BI Desktop

Measures are dynamic calculations that can be applied to many situations, and will change based on the filter context they are computed in. Let’s create a measure in Power BI Desktop. First, open up a new Power BI Desktop report and load the Financials sample data by clicking on the Use sample data tile. 

Private Power BI Training

Learn fundamentals to advanced topics from the experts in visual analytics.

cta_hor-transparent_power_bi_training

Let’s create a measure to find the total Sales from the VTT product. From the Home tab, click on New measure in the Calculations tab. Another way to create a measure is from the Data pane, by right clicking your table name and selecting New measure.

create a measure

Once the dialog box opens, let’s name our measure VTT Sales and write the following DAX formula:

VTT Sales = CALCULATE(SUM(financials[Gross Sales]), FILTER(financials, financials[Product] = “VTT”))

VTT Sales

There are other ways to perform this calculation, but for simplicity, we will use the above DAX. Notice that we used the SUM() function. When creating a measure, you need to instruct DAX to use an aggregation before referencing an item (like the Gross Sales column) from the data pane. If you were to simply write CALCULATE(financials[Gross Sales]), you would notice that DAX’s autocomplete won’t fill in, indicating an error in your DAX code.

VTT Sales Wrong

Since measures are computed when a measure is displayed on a report page, they do not have an implicit row context, like calculated columns do. A measure dynamically changes based on the visual it is used in, so without an iterator function (a function that performs the formula for every row of a table in the function that usually ends in X), the only context that affects a measure is filter context. Any slicer, active filter, or visual affects how a measure is computed. Iterator functions force measures to have row context. Keep this in mind when we create this second measure below.

An Introduction to the Power BI Power Query Editor

Let’s create a new Gross Sales measure, by multiplying the total units sold by the sale price. We’ll check our measure by comparing it to the Gross Sales column from the Financials dataset.

Gross Sales 2 = SUM(financials[Units Sold]) * SUM(financials[Sale Price])

Gross Sales 2 incorrect

Our Gross Sales 2 measure should be matching our values on the left hand side. What happened? Our  measure is incorrect because our measure does not have any implicit row context.

The Gross Sales 2 measure computed the total number of units sold and multiplied that by the total sale price. If this measure worked correctly, the calculation of Units Sold * Sale Price would have happened for every single row, and then aggregated in the visual after each row calculation was performed. 

Now, we’ll rewrite Gross Sales 2 using the iterator function, SUMX:

Sales 2 = SUMX(financials, financials[Units Sold] * financials[Sale Price])

Gross Sales 2 correct measure in Power BI

Now that we’ve forced row context into our Gross Sales 2 measure, our numbers match the Sum of Gross Sales column from the Financials dataset. This example illustrates the main difference between measures and calculated columns. Measures do not have row context, so to use them in a way that requires row context, you need to force them to manually calculate row by row.

 

Creating a calculated column in Power BI Desktop

Next, I’ll show you how to create a calculated column. First, navigate to the table view, which will help illustrate the differences between calculated columns and measures in Power BI. First, look for the VTT sales and Gross Sales 2 measures in table view. Where are they? Measures are not stored in the original data model, so they can’t be viewed here. Since they aren’t computed until they are used in a visual or on a report page, they don’t have individual row values like columns do. 

Now in the table view, click on New column.

Create a calculated column

We’re going to write the same Gross Sales measure, but this time we’re creating a column. 

Gross Sales Column =  financials[Units Sold] * financials[Sales Price]

Gross Sales Column

Notice that when you start to type Units Sold, DAX’s autocomplete works without you having to write an aggregation like SUM before the column, like you would with a measure. Since calculated columns perform the operation, Units Sold * Sale Price row by row, the gross sales column we created yields the same result as the original Gross Sales column.

An Introduction to Parameters in Power BI

You can force an aggregation in a calculated column if you’d like, but doing so results in the same incorrect value for each row in the column, the same error as our incorrect Sales measure from before.

Gross Sales 2 Column
Gross sales 2 Column Value

Now, if your intention was to have the same value for every row in the column, create a new calculated column and write Gross Sales Total = SUM(financials[Gross Sales]).

Make your data more usable with our free newsletter.

Get monthly tips and tutorials:

This will give you the correct Total gross sales value. This could be useful if you wanted to determine something like the percentage of gross sales each row makes up. But for this, you can skip the Gross Sales Total Column and just create a percentage of total column, writing:

Gross Sales pct =  DIVIDE(financials[Gross Sales], SUM(financials[Gross Sales]))

Gross sales pct
gross sales pct values

 

Pros and cons of columns and measures

Now that we’ve talked about context and DAX-specific differences between calculated columns and measures in Power BI, let’s discuss the main advantages and disadvantages of each. 

Pros and cons of measures

Pros: 

  • Reusability/Context: Since measures are dynamic, measure results change based on the context they’re computed in. This means the same measure can be reused multiple times and have different results.
  • Storage: Measures don’t affect your data model; they only exist when they are used in a visual on your report page.

Cons:

  • Use in moderation: Too many measures on the same report page can impact performance. Measures that are very complicated can also impact performance. Break up your measures into smaller measures if you need to!
  • Context: Yes, context is a pro and a con for measures. If you see results or totals that don’t look right, check your filter context! 

 

Pros and cons of calculated columns

Pros:

  • Row-level data: Calculated columns store individual row values which can be useful when referencing specific values in your analysis.
  • They are static: Row values will always stay the same. 

Cons:

  • Row-level data: Calculated columns aren’t the best at aggregations.
  • Storage: Calculated columns can increase the size of your data model. BUT, since they are computed when the data is loaded/refreshed, they can improve performance when compared to measures that load individually when used in visuals.

At the end of the day, the better choice between the two is what suits your needs and use case best. Both calculated columns and measures in Power BI are extremely powerful tools, but without learning the differences between the two, it can be hard to use them appropriately in your reports. I hope this blog has cleared up some of the confusion around the choice between measures and calculated columns in Power BI Desktop.

Thanks for reading,
Juan Carlos Guzman


Access Exclusive Benefits

Dashboard templates, digital credentials, and more.

Related Content

Ryan Sleeper

Dimension filters, measure filters, discrete date filters, and continuous date filters Create relevant analyses by keeping or excluding marks on…