Forum Discussion
malkha
6 years agoRegular Visitor
Measure Total not correct
why isnt this measure below totalling correctly?my cummlative formula works fine until it hits december. where December is the forecast data. As you can see on the table on the right. i have the c...
az38
6 years agoCommunity Champion
Hi malkha
try to use IF(CALCULATE(SUM(....)), statement
do not hesitate to give a kudo to useful posts and mark solutions as solution
malkha
6 years agoRegular Visitor
- az386 years agoCommunity Champion
what result do you expect in total row? it should be sum of all rows or logic IF should be implemented on whole data massive?
also, you could try smth like that
Measure = sumx('Fcst Vs Actuals'; if(calculate(sum('Fcst Vs Actuals'[Capital_Actuals]))=0; calculate(sum('Fcst Vs Actuals'[Capital_Forecast])); calculate(sum('Fcst Vs Actuals'[Capital_Actuals]))))do not hesitate to give a kudo to useful posts and mark solutions as solution