Forum Discussion
SpiroswayGR
Resolver III
5 years agoColumn Total but 100%
Dear community, Do you have any solution how can we show column total but should be on % of 100%. I have this solution : but i would like to change it like this , so total of subca...
Anonymous
5 years agoNot applicable
Hi SpiroswayGR ,
Please try this:
Measure =
VAR _per =
CALCULATE ( SUM ( 'Table'[Revenue] ), ALLEXCEPT ( 'Table', 'Table'[Category] ) )
RETURN
IF (
HASONEVALUE ( 'Table'[Sub] ),
DIVIDE ( MAX ( 'Table'[Revenue] ), _per ),
_per
)
The final output is shown below:
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Syndicate_Admin
Administrator
5 years agomy results