Forum Discussion
Ranking calculation in a table
- 8 years ago
Create an additional column that is different from the similar Sales Column
SupportCol = Data[Sales]+(RANDBETWEEN(1,100)/10000000)
This will add decimal value to the similar numbers hence making it non similar.
Then do the ranking based on this SupportCol
RANKX(TableName,[SupportCol],,DESC)
The problem is the ranking, it is giving same Ranks for two similar figures.
I have tried to find it out but couldn't succed in getting a good solution for Ranking of same figures.
Create an additional column that is different from the similar Sales Column
SupportCol = Data[Sales]+(RANDBETWEEN(1,100)/10000000)
This will add decimal value to the similar numbers hence making it non similar.
Then do the ranking based on this SupportCol
RANKX(TableName,[SupportCol],,DESC)
- JonathanJohns8 years agoHelper III
Thank you it looks working. :)
- AliceW5 years agoPower Participant
It works! Thank you SO MUCH!!