Forum Discussion
InsightSeeker
2 years agoHelper III
Measure %
How can i create a measure to get the result as shown in the below table? I don't want to use show value as % of grand total. Table Mode Online Offline Online Online Online ...
- 2 years ago
Hello InsightSeeker ,
You have to create a measure for the same as below:
Percentage Contribution = Var A = COUNTA('Table'[Mode]) Var B = CALCULATE(COUNTA('Table'[Mode]),ALL('Table')) Return DIVIDE(A,B,0)Output looks like this:
If this post helps, then please consider accepting it as the solution to help other members find it more quickly. Thank You!!
- 2 years ago
To get the % of Offline/Online use this
% = DIVIDE(CALCULATE(COUNTROWS('DataTable'), 'DataTable'[Mode] = SELECTEDVALUE('DataTable'[Mode])), CALCULATE(COUNTROWS(ALL('DataTable'))))Regards
Phil
Kishore_KVN
2 years agoSolution Sage
Hello InsightSeeker ,
You have to create a measure for the same as below:
Percentage Contribution =
Var A = COUNTA('Table'[Mode])
Var B = CALCULATE(COUNTA('Table'[Mode]),ALL('Table'))
Return
DIVIDE(A,B,0)
Output looks like this:
If this post helps, then please consider accepting it as the solution to help other members find it more quickly. Thank You!!
Kishore_KVN
2 years agoSolution Sage
Attached PBIX for reference.