This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi all,
Probably very simple but I am stuck in finding the correct DAX Forumla to get the percentage of "Total Permits" per Organisation, over the overall total. This is to see which Organisation is the busiest by percentage. % - The table below, the Organisations have been filtered.
Jay
Solved! Go to Solution.
Hey,
Total Permits is probably a measure here e.g. SUM([Total Permits]) or some similar function to count permits- thus would rename # Permits.
Try to create a new measure # Total Permits
Calculate ( SUM([Total Permits]), ALL([Organisation]))
Then % measure would be just DIVIDE (# Permits , # Total Permits)
Let me know if this is what you are looking for
If it's the Matrix visual you are using then the easies way would be to drop the "Total Permits" to the table again and in the "Values" pane switch it to "Show Value As" --> "Percent of grand total"
Hi @JirkaZ I would normally use this but not all Organisations are listed on the table - so its not an accurate percentage for the overall permits / all organisations.
What @Anonymous says then if it's really all the orgs.
Hey,
Total Permits is probably a measure here e.g. SUM([Total Permits]) or some similar function to count permits- thus would rename # Permits.
Try to create a new measure # Total Permits
Calculate ( SUM([Total Permits]), ALL([Organisation]))
Then % measure would be just DIVIDE (# Permits , # Total Permits)
Let me know if this is what you are looking for
Perfect !! Thank you so much @Anonymous !!
Jay
@JayTG123 , Try like
divide([measure], calculate([measure],all(Table[Organization]) ) )
or
divide([measure], calculate([measure],removefilters(Table[Organization]) ) )
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 26 | |
| 23 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 45 | |
| 28 | |
| 24 | |
| 22 |