Forum Discussion
Euro0681
3 years agoHelper II
Faster Calculation or Same?
1. 'Table'[Total Amount] <----- Column from the model 2. Measure = SUM('Table'[Amount]) I have a column coming from the model (1) and then created a measure that takes the sum of the column (2), ...
- 3 years ago
no difference.
actually
Measure 1 = Calculate( [Measure], 'Table'[Date] = "04-12-2020" )
is this:
Measure 1 = Calculate( Calculate( SUM('Table'[Total Amount])), 'Table'[Date] = "04-12-2020" )
the two Calculates will be coumted as one
FreemanZ
3 years agoSuper User
no difference.
actually
Measure 1 = Calculate( [Measure], 'Table'[Date] = "04-12-2020" )
is this:
Measure 1 = Calculate( Calculate( SUM('Table'[Total Amount])), 'Table'[Date] = "04-12-2020" )
the two Calculates will be coumted as one