Power BI  

Measures vs Columns in Power BI: Understanding the Difference

Introduction

In this article, we’ll break down the differences in simple terms, explain when to use each, and provide practical examples you can apply in your own Power BI projects. In Power BI, you often work with Columns and Measures, two types of DAX calculations that look similar but behave very differently. Choosing the right one can impact your visuals, performance, and even how your data responds to filters. In this article, we’ll break down the difference between Measures and Columns, and show when to use each for the best results.

Let’s start by understanding Measures and Calculated Columns in Power BI.

What are Measures ?

A Measure is a dynamic calculation evaluated using DAX (Data Analysis Expressions) at query time, meaning its value depends on the filters, slicers and context of the visual in which it is used.

How to Create a Measure:

09-12-2025-03-04-49
  1. Right-Click or Click on (... ) of the table in the Fields (Data ) pane where you want to store the measure.

  2. Select New measure.

  3. Name the measure (e.g. Total Profit).

  4. Enter your DAX formula (e.g. Total Profit = SUM(Sales[Revenue]) - SUM(Sales[Cost])).

  5. Use the calculator icon to add it to visuals. 

OR

You can also create a new measure from the Home or Modeling tab as shown below:

new measure

Key Characteristics:

  • Calculated on the fly, not stored in the model.

  • Values update automatically when filters or slicers change.

  • Works on aggregated data (summarized format, such as totals, averages, or percentages), not individual rows.

  • Memory-efficient—doesn’t take extra space.

  • Best for:

    • KPIs and performance indicators

    • Cards showing totals or important numbers

    • Totals, subtotals, and percentages

    • Any calculation that needs to change based on what the user selects

What Are Calculated Columns ?

A Calculated Column is a value calculated for each row in your table when the data is loaded. These values are stored in the data model, just like any other column from your source.

How to Create Calculated Column:

09-12-2025-03-04-49
  1. Right-Click or Click on (... ) of the table in the Fields (Data ) pane where you want the column.

  2. Select New column.

  3. Name the column. (e.g. Profit).

  4. Enter your DAX formula (e.g. Profit = Sales[Revenue] - Sales[Cost]).

  5. Press Enter → the column is added to your table and stored in the model.

OR

You can also create a new measure from the Modeling tab as shown below:

newcolumn

Key Characteristics:

  • Calculated once during data refresh.

  • The output is static.

  • Values exist per row in the table.

  • Stored in the model → uses memory.

  • Can be used in:

    • Slicers

    • Filters

    • Rows, columns, and axes of visuals

    • Relationships

How They Differ:

FeatureMeasureCalculated Column
CalculationAt query time, based on filter contextRow by row
StorageNot stored (calculated dynamically)Stored in the data model
Memory UsageMinimal memory usageUses memory for each row
Responds to FiltersYes, updates automatically with slicers/filtersNo
Best UseKPIs, totals, averages, percentages, dynamic calculationsClassification, grouping, slicers, axes
ExampleTotal Profit = SUM(Sales[Revenue]) - SUM(Sales[Cost])Profit = Sales[Revenue] - Sales[Cost]

Let's understand it with an example:

Suppose you have a Sales table with these columns:

ProductRevenueCost
A10060
B200120
C15090

You create a Calculated Column for Profit:

Profit = Sales[Revenue] - Sales[Cost]
ProductRevenueCostProfit (Calculated Column)
A1006040
B20012080
C1509060

Now, you apply a slicer to show only Product A and B.

  • Profit column values do NOT change; they remain 40, 80, 60.

  • Power BI just filters the rows, showing only Product A and B with their stored Profit values (40 and 80).

  • The calculation itself is not re-evaluated, it’s already fixed in the column.

Contrast with a Measure

If instead you create a Measure:

Total Profit = SUM(Sales[Revenue]) - SUM(Sales[Cost])
  • Applying the same slicer for Product A and B changes the measure dynamically:
    Total Profit = (100+200) - (60+120) = 120

  • The value updates based on the filter context.

Conclusion

  • Measure -> Need a row-by-row values OR Need something for slicers or axis

  • Calculated Column -> Need a dynamic value OR Need a KPI or summary

Both Measures and Columns are essential tools in Power BI, but they serve very different purposes.