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 September 15. Request your voucher.
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.
User | Count |
---|---|
57 | |
54 | |
53 | |
49 | |
30 |
User | Count |
---|---|
177 | |
88 | |
70 | |
48 | |
48 |