Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register 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!
Check out the May 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
68 | |
67 | |
44 | |
42 |
User | Count |
---|---|
47 | |
38 | |
28 | |
27 | |
27 |