The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 )
User | Count |
---|---|
78 | |
74 | |
43 | |
32 | |
28 |
User | Count |
---|---|
104 | |
95 | |
51 | |
50 | |
46 |