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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I want to be able to rank percentages that Im looking at against Month and Group. The following shows the info in a simple table (With the rank I want) but I will be putting it into a matrix with Month and Columns
Jan | Group 1 | 89% | 1 |
Jan | Group 2 | 60% | 2 |
Jan | Group 3 | 55% | 3 |
Feb | Group 1 | 90% | 2 |
Feb | Group 2 | 99% | 1 |
Feb | Group 3 | 60% | 3 |
Mar | Group 1 | 50% | 3 |
Mar | Group 2 | 80% | 1 |
Mar | Group 3 | 70% | 2 |
I have used the following DAX but its ranking everything as 1
Solved! Go to Solution.
Hi @DebbieE ,
To create a measure as below.
Measure = RANKX(ALLEXCEPT('Table','Table'[month]),[Avg Overall satisfaction],,DESC,Dense)
If it doesn't meet your requirement, kindly share your sample data and excepted result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.
I have added this in as rank2 and it doesnt seem to work The DAX I used (Rank) works fine in a table (If I omit Null values)
Here is a picture of both ranks in action
Unfortunately I cant upload my files to One Drive.
Try using :
Ive had a go
I cant SUM my AVG Overall Satisfaction. Parameter is not the correct type. Its already averaged in a measure so I changed it to this
I have almost got it working
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!