Forum Discussion
shkabuzar
8 years agoFrequent Visitor
Percentages to multi line report
Hi, Here is the report which showing values, I would like to calculate percentages of it. ex: for Nov 2018 A = 32 , B = 24 Expected results A=57.14%, B= 42.85% Please let me know how t...
- 8 years ago
You may use measure below.
Measure = DIVIDE ( SUM ( Table1[Count] ), CALCULATE ( SUM ( Table1[Count] ), ALLSELECTED ( Table1[Category] ) ) )
v-chuncz-msft
Community Support
8 years ago
You may use measure below.
Measure =
DIVIDE (
SUM ( Table1[Count] ),
CALCULATE ( SUM ( Table1[Count] ), ALLSELECTED ( Table1[Category] ) )
)
UNOFOR
6 years agoFrequent Visitor
Thank you very much. Thing it did the trick!
/U