[excel] "rank" function from smallest to largest

tinou -  
 valsero -
Hello,
In Excel 2000, I am looking for the formula that could help me establish the ranking of athletes "runners". I know the "rank" formula for ranking from the highest number to the lowest, but not for ranking from the lowest to the highest performance (since it concerns minutes and seconds in my case).
Thank you to those who can help me
Tinou
Configuration: excel 2000 windows 98

7 answers

  1. gbinforme Posted messages 14930 Registration date   Status Contributor Last intervention   4 744
     
    Hello

    you're not far from the solution because:

    =RANK(A1;A1:A20)
    or
    =RANK(A1;A1:A20;0)

    gives the rank from largest to smallest but

    =RANK(A1;A1:A20;1)
    gives the rank from smallest to largest!

    --
    always zen
    21
    1. alansankar
       
      The rank function doesn't handle duplicates very well... (i.e.: those with the same ranking).

      Alan
      0
    2. ledieu
       
      thank you; it's okay
      0