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 am working on HR Attrition dashboard. My requirement is to build visuals which show highest attrition by supervisor in that organisation. Now, management came up with new requirement as the visual must be sorted by attrition and headcount of that supervisor. They are asking sort by highest headcount and highest attrition. How can we do sort by two measures as each supervisor has different heacounts and attriters. If any one knows, please let me know.I have applied top N filter by headcount and sorted it with attriters. But its not interactive.
Solved! Go to Solution.
Hi @maheshbabu ,
You can first calculate the ranking of heacounts and attriters separately.
rank by heacounts = RANKX(ALL('Table'),[heacounts measure],,DESC,Dense)
rank by attriters = RANKX(ALL('Table'),[attriters measure],,DESC,Dense)
Then there will be a priority selection, here I choose ‘attriters’ to have a higher priority than 'heacounts'.
rank by attriters and heacounts = RANKX(ALL('Table'),[rank by attriters]*100+[rank by heacounts],,ASC,Dense)
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks a lot
Hi @maheshbabu ,
You can first calculate the ranking of heacounts and attriters separately.
rank by heacounts = RANKX(ALL('Table'),[heacounts measure],,DESC,Dense)
rank by attriters = RANKX(ALL('Table'),[attriters measure],,DESC,Dense)
Then there will be a priority selection, here I choose ‘attriters’ to have a higher priority than 'heacounts'.
rank by attriters and heacounts = RANKX(ALL('Table'),[rank by attriters]*100+[rank by heacounts],,ASC,Dense)
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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 |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 18 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 51 | |
| 38 | |
| 31 | |
| 26 |