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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
I have tried many solutions posted on this forum but with no success :(( I hope someone can help me with this case:
I have a data set which looks likes this:
The clientnr contains unique numbers and the category level 1 and 2 are not unique and contain blank cells. I want to make a ranking based on the number of clients in category level 2 and make a table which looks like this:
I hope someone can post the right dax formula to solve this.
Thanks!!
Kind regards
Tiemen
Solved! Go to Solution.
hi @Anonymous
Put in a matrix the columns of your table in this way:
Then create a measure to Rank this:
Ranking =
RANKX (
ALLEXCEPT ( Table1, Table1[category level 1] ),
CALCULATE ( SUM ( Table1[clientnr] ) ),
,
DESC
)
hi @Anonymous
Put in a matrix the columns of your table in this way:
Then create a measure to Rank this:
Ranking =
RANKX (
ALLEXCEPT ( Table1, Table1[category level 1] ),
CALCULATE ( SUM ( Table1[clientnr] ) ),
,
DESC
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 52 | |
| 51 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |