Forum Discussion

zelda88's avatar
zelda88
Regular Visitor
8 years ago
Solved

RANK.EQ

Below is an example of what I'm hoping to do. Please let me know if you require further clarification!

 

Form No. 

12

93

12

12

54

18

18

35

 

RESULT

 

Form No.     Rank

12                1

12                1

12                1

18                2

18                2

35                3

54                4

93                5

 

I tried using the RANKX and the RANK.EQ functions, but they both give different ranks to the "same" value. Any ideas/suggestions (in DAX code) would be very much appreciated!

2 Replies

  • zelda88's avatar
    zelda88
    Regular Visitor

    UPDATE: 

    I am using the "Dense" parameter with the RANKX function, but I'm still getting very weird rankings for duplicate values.

     

     

  • v-chuncz-msft's avatar
    v-chuncz-msft
    Community Support

    zelda88,

     

    The following DAX seems to work fine.

    Column =
    RANKX ( Table1, Table1[Form No. ],, ASC, DENSE )