Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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 |
| Offline |
| Offline |
| Offline |
| Offline |
| Offline |
Result
| Mode | Count |
| Online | 4 |
| Offline | 6 |
| Mode | Percentage |
| Online | 40% |
| Offline | 60% |
Solved! Go to Solution.
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!!
To get the % of Offline/Online use this
% = DIVIDE(CALCULATE(COUNTROWS('DataTable'), 'DataTable'[Mode] = SELECTEDVALUE('DataTable'[Mode])), CALCULATE(COUNTROWS(ALL('DataTable'))))
Regards
Phil
Proud to be a Super User!
To get the % of Offline/Online use this
% = DIVIDE(CALCULATE(COUNTROWS('DataTable'), 'DataTable'[Mode] = SELECTEDVALUE('DataTable'[Mode])), CALCULATE(COUNTROWS(ALL('DataTable'))))
Regards
Phil
Proud to be a Super User!
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!!
Hi, you can create a measure to count rows for each mode.
In the table, the mode column & the cnt measure used.
If this resolves your problem, then please mark it as solution, Thanks!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.