This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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] ) )
)
Check out the April 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 |
|---|---|
| 35 | |
| 33 | |
| 26 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 66 | |
| 36 | |
| 32 | |
| 26 | |
| 23 |