Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
For example, I would like the next measurement column on the right side to show the % of that row from the Total from the TotalCount column. So COMPASS would be 7/100.
I've tried a couple of formulas from posts in the search but with no success.. Any help would be great. Thanks team.
Solved! Go to Solution.
why COMPASS is 7/100 , not 7/11311?
Besides creating a new measure, you can also add the measure or column to the table again . Then show value as percentage of grand total
Proud to be a Super User!
Hi,
You may also use visual calculations.
why COMPASS is 7/100 , not 7/11311?
Besides creating a new measure, you can also add the measure or column to the table again . Then show value as percentage of grand total
Proud to be a Super User!
Yes, I meant 7/11311. Sorry about that typo for the ones that mentioned it. Thank you for your help. I'm pretty new to BI and this forum. You guys are great.
you are welcome
Proud to be a Super User!
Hi, 100 in 'COMPASS would be 7/100' might be a typo in your message.
You may try
Percentage of Total =
VAR RowCount = SUM('Table'[TotalCount])
VAR TotalCount = CALCULATE(SUM('Table'[TotalCount]), ALL('Table'))
RETURN
DIVIDE(RowCount, TotalCount, 0)
This will give you decimal numbers, you can format with power bi UI to percentage.
User | Count |
---|---|
98 | |
76 | |
74 | |
49 | |
26 |