This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Employee Name, | Performance Score%, | Total Volume of Work, | Rank |
| A | 100% | 600 | 2 |
| B | 50% | 800 | 4 |
| C | 100% | 900 | 1 |
| D | 100% | 200 | 3 |
I have only Table of Team List where employee name and Id is mentioned.
total volume of work is calculated with measure = SALES1+ SALES 2+ SALES 3
Performance Score with measure = Quality Score + Time Score +
Total Volume of Work Score. I Want to calculate rank as mentioned above on the basis of performance score. If the performance score is same then check the total volume of those employees who has done the highest volume of work give the rank.
Solved! Go to Solution.
Hi @aqsyed
I create an 'Employee' table with the same data sample, then created a new column 'Rank' using the below DAX code
Rank=
RANKX(ALL(Employee),
RANKX(ALL(Employee),Employee[Performance Score%],,ASC,Dense) & "" & RANKX(ALL(Employee),Employee[Total Volume of Work],,ASC,Dense)
,,DESC,Dense)
Did it work ? 👍 A kudos would be appreciated 📢 Mark it as a solution to help spreading knowledge
Hi @aqsyed
I create an 'Employee' table with the same data sample, then created a new column 'Rank' using the below DAX code
Rank=
RANKX(ALL(Employee),
RANKX(ALL(Employee),Employee[Performance Score%],,ASC,Dense) & "" & RANKX(ALL(Employee),Employee[Total Volume of Work],,ASC,Dense)
,,DESC,Dense)
Did it work ? 👍 A kudos would be appreciated 📢 Mark it as a solution to help spreading knowledge
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 25 | |
| 24 | |
| 24 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 27 | |
| 24 | |
| 19 |