Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hi,
I've been trying to find a solution with the below scenario. I hope someone can help.
I have the following data:
| Name | Local Grade | Country |
| Salameh, Mario | Partner | USA |
| Berlin, Martin | Partner | USA |
| Khan, Jawad | Partner | UK |
| Mackenzie, Karl S | Senior Manager | Spain |
| Masry, Raed A | Senior Manager | USA |
| Ghanghro, Mossadiq A | Manager | Spain |
| Bhatt, Mihir | Manager | UK |
| Sobh, Mohamad A | Senior | Spain |
| Hussein, Omar Z | Senior | USA |
| Karmakar, Anirban | Junior | UK |
| Mcpheator, Craig A | Junior | USA |
| Zabalawi, Zaid H | Junior | Spain |
I have a slicer for Local Grade, and what I am trying to do is that when I filter on partners for example I want to see the percentage of partners in comparison to all other local grades for each country alone ( Not as a percentage of partners across all countries)
So If I select on Partner I should get the following:
USA 40 %
UK 33.3 %
Spain 0 %
What I did was that I used the following measure:
Solved! Go to Solution.
@Anonymous
Something like this may be
Measure =
DIVIDE (
COUNT ( Table1[Country] ),
CALCULATE ( COUNT ( Table1[Country] ), ALL ( Table1[Local Grade] ) )
)
@Anonymous
Something like this may be
Measure =
DIVIDE (
COUNT ( Table1[Country] ),
CALCULATE ( COUNT ( Table1[Country] ), ALL ( Table1[Local Grade] ) )
)
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 22 | |
| 21 | |
| 20 | |
| 19 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 37 | |
| 31 | |
| 27 |