Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
78 | |
74 | |
42 | |
32 | |
28 |
User | Count |
---|---|
100 | |
93 | |
52 | |
50 | |
48 |