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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi There,
I'm having trouble with my RankX function and have tried following tutorials and tips and am not getting the same result
I have a list of names and these names are associated to a number of transactions
I am trying to create a ranking that ranks on the number of transactions against each name
Hi @LDC20 ,
This is because Sales Rep ranked 4 will have same transaction counts. Same would be rank 5,9,10.
What is the end output needed.
kindly share sample data.
Regards,
Harsh Nathani
Thanks for the reply
In my rankings I dont want it to skip any numbers
Hi @LDC20 ,
Create a measure
Randome = RAND()
Then add this measure to your ranking measure
RankingTrans = RANKX(ALL('CCData'[Sales Rep]), [TransCount] + [RAND])
You will get rank as 1, 2 ,3 ,4.2,4.5 ... etc
else do you have any other supporting column like date,.
Then follow this articles
https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures
https://radacad.com/how-to-use-rankx-in-dax-part-1-of-3-calculated-columns
https://radacad.com/how-to-use-rankx-in-dax-part-3-of-3-the-finale
else pls follow this solved solution
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
Create an index column over your numbers instead of using RANKX, or use the DENSE ties option if you insist on using RANKX
https://docs.microsoft.com/en-us/dax/rankx-function-dax#syntax
I added in the DENSE and its still ranking similar values as the same
See attached screenshot
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 13 | |
| 8 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 29 | |
| 18 | |
| 17 | |
| 11 | |
| 10 |