Forum Discussion
mafaber
6 years agoHelper II
Different Measure Total using SUMX
Hi, I would like to change how my measure calculates the total. For that I'm using the HASONEFILTER function and that works just fine, it correctly evaluates the first expression for each value r...
- 6 years ago
Try something like this for the total:
Measure2 = SUMX( SUMMARIZE( 'Table'; 'Table'[Category]; "Value" ; [Measure] ) ; [Value] )
Br,
J
PaulDBrown
6 years agoCommunity Champion
Try the following (I'm using random data):
1) the measures:
Sum of Actuals = SUM('Data Table'[Actuals])Sum of Target = SUM('Data Table'[Target])Actuals / Target = DIVIDE([Sum of Actuals]; [Sum of Target])SUMX of Actuals / Target = SUMX(SUMMARIZE('Data Table'; 'Data Table'[Channel];
"Calculation"; [Actuals / Target]);
[Calculation])
And you will get this result
Anonymous
6 years agoNot applicable
Thanks buddy, this resolved a big issue for me.