Forum Discussion

dennydavis's avatar
dennydavis
Helper I
6 years ago
Solved

Calculated Column vs Measure

MeasureCalculated Column
It is not storedStored in memory
Calculated on the flyCalculates at the time of Refresh report
Consumes CPUConsumes memory
Usually is a result of an aggregationRow by row calculation usually
Value can be see while adding in the reportValue can be seen in the column in Data tab
DAX usually is the best place for this calculationCan be done in Power Query in majority of cases
Example: Sales Year to dateExample: Profit = Sales - Cost
Sales YTD = TotalYTD(Sum(Sales), DateField.[Date]) 

4 Replies