Forum Discussion

Euro0681's avatar
Euro0681
Helper II
3 years ago
Solved

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), ...
  • FreemanZ's avatar
    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