Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago

Rank with duplicates

I have a column that has days since trade  from today, so a trade yesterday would be 1, day before 2 etc. We do many trades to there could 100 trades designated with a 2. How could I rank this column? There can be gaps in the days since trade if there is a day when no trades are done - like weekends. I am looking for something that would return something like this - easy enough to do in excel:

 

Days since tradeRank
11
11
11
11
22
22
22
43
43
43
74
74
74
74

4 Replies

  • Anonymous , try a new column like

     

    rank = rankx(Table,[Days since trade],,asc,dense)

  • Anonymous's avatar
    Anonymous
    Not applicable

    Thank you, I used this language:

    Rank Calc = RANKX('Sheet1',Sheet1[Days since Trade],,ASC,Dense)

     

     

    But get this?