How to Use the RANK Function

How to Use the RANK Function

Use the RANK function to compare numbers to other numbers in the same list. See the steps in this video, and the written instructions are below the video.

How to Use the RANK Function

If you give the RANK function a number, and a list of numbers, it will tell you the rank of that number in the list, either in ascending or descending order.
For example, in the screen shot below, there is a list of 10 student test scores, in cells B2:B11.
To find the rank of the the first student's score in cell B2, enter this formula in cell C2:
=RANK(B2,$B$2:$B$11)
rank function 02
Then, copy the formula from cell C2 down to cell C11, and the scores will be ranked in descending order.
rank function 01
go to top

RANK Function Arguments

There are 3 arguments for the RANK function:
  • number: in the above example, the number to rank is in cell B2
  • ref: We want to compare the number to the list of numbers in cells $B$2:$B$11. Use an absolute reference ($B$2:$B11), instead of a relative reference (B2:B11)so the referenced range will stay the same when you copy the formula down to the cells below
  • order: (optional) This argument tells Excel whether to rank the list in ascending or descending order.
    • Use zero, or leave this argument empty, to find the rank in the list in descending order. In the example above, the order argument was left blank, to find the rank in descending order.
      =RANK(B2,$B$2:$B$11)
    • For ascending order, type a 1, or any other number except zero. 
      If you were comparing golf scores, you could type a 1, to rank in ascending order. 
      =RANK(B2,$B$2:$B$11,1)
go to top

RANK Function Order

In the RANK function, the 3rd argument (order), is optional. The order argument tells Excel whether to rank the list in ascending or descending order.
Order for RANK function

Descending Order

If you use a zero as the setting for order, or if you don't use the 3rd argument, the rank is set in descending order.
  • The largest number gets a rank of 1
  • The 5th largest number gets a rank of 5.
Order for RANK function

Ascending Order

If you use a 1 as the setting for order, or if you enter any number except zero as the 3rd argument, the rank is set in ascending order.
  • The smallest number gets a rank of 1
  • The 5th smallest number gets a rank of 5.
Order for RANK function

Flexible Formula

Instead of typing the order argument number into a RANK formula, use a cell reference, to create a flexible formula.
For example, type a 1 in cell E1, and link to cell E1 for the order argument.
NOTE: Be sure to use an absolute reference ($E$1), if the formula will be copied down to other rows. If you use a relative reference (E1), the reference will change in each row.
=RANK(B2,$B$2:$B$6,$E$1)
Order for RANK function
By linking to a cell, you can quickly see different results, without changing the formula. Type a zero in cell E1, or delete the number, and the rank will change to Descending order.
Order for RANK function

Use a Check Box

For the order option, there are only 2 choices - Ascending or Descending. To make it easier for people to change the order, use a check box to turning Ascending order ON or OFF.
  • If it is turned ON, the RANK order will be Asscending
  • If it is turned OFF, the RANK order will be Descending
In the RANK function sample file, there is a check box example on the RankOrderCheck worksheet. For instructions on how to add a check box, and use it in a formula, see my blog post, Use Check Box Result in Excel Formula.
Order for RANK function

More Examples of Flexible Formulas

For more examples of flexible formulas, see

RANK Function Ties

What happens to the ranking if some of the scores are tied? Excel will skip subsequent numbers, if necessary, to show the correct rank.
  • In this example above, the last two scores in the list are the same -- 38. The two students, Ivy and Joe, are both ranked as 4th.
  • The next highest score -- Ed's score of 36 -- is ranked as 6th, not 5th, because there are 5 students ahead of him.
If you have to break the ties, or award prize money based on ties, there are examples below.

Break Ties With RANK Function

In some cases, ties aren't allowed, so you have to find a way to break the tie.
Watch this video to see the steps, and the written instructions are below the video.

Break Ties With RANK Function

In some cases, ties aren't allowed, so you have to find a way to break the tie.
In this example, you could keep track of the number of minutes that each student worked on the test, and use that time to break any ties. If scores are tied, the student who takes less time to complete the test will rank ahead of the other student with the same score.

Calculate Decimal Amount for Tied Scores

I added the Test Times in column C, and a TieBreak formula in column E.
=IF(COUNTIF($B$2:$B$11,B2)>1, 
       RANK(C2,$C$2:$C$11,1)/100,0)
rank function 01

How the Tie Break Formula Works

The Tie Break formula uses COUNTIF and RANK functions, wrapped with an IF function, to see if a tie breaking decimal amount should be added to the original Rank.
  1. First, the TieBreak formula checks to see IF there is more than one instance of the number in the entire list:
       IF(COUNTIF($B$2:$B$11,B2)>1
  2. If there is more than one instance, it ranks the Times in ascending order, because a lower time is better:
       RANK(C2,$C$2:$C$11,1)
  3. Next, it divides that amount by 100, to get a decimal amount. Later, you'll add this decimal amount to the original Rank.
    Note: The divisor, 100, could be changed to another number, if you are working with a longer list.
       /100
  4. Finally, to complete the IF function, if there is only one instance a a Rank, the result for the TieBreak is zero.
       ,0)

Calculate the Final Rank

After calculating the tie breaking decimal amounts, you can add the RANK function results to the TieBreak results, to get the final ranking.
In this example, two students were tied in 4th place. Joe took 27 minutes to complete the test, and his Time was ranked 5th. Ivy took 29 minutes to complete the test, and her Time was ranked 9th.
The Tie Break formula adds a decimal of 0.09 to Ivy's score, and 0.05 to Joe's score. In the final ranking, Joe, with 4.05 ranks higher than Ivy, with 4.09.
rank function 01
go to top

Split Winnings for Tied Rank

In a tournament, instead of breaking the ties, you might want to split the winnings among any tied players, if you're awarding a cash prize, or points. To see the steps for splitting the winnings, watch this short video. The written instructions are below the video.

Split Winnings for Tied Rank

In a tournament, instead of breaking the ties, you might want to split the winnings among any tied players, if you're awarding a cash prize, or points. If 2 or more players have the same rank, they split the prize amount available for that rank, down to the next occupied rank.
Below is a sample prize table, showing the amount awarded for each rank. In this example, if 3 players are at rank 1, they would split the total amount (10+9+8=27) for ranks 1, 2 and 3.
rank function ties 01
Each of the 3 players at rank 1 earns 9 (27/3 = 9) and the player with the next highest score would be ranked 4th, and earn 7.

Calculate the Split Amount

To split the prize amount among tied players, the Prize formula uses the AVERAGE function, with the OFFSET function finding the range of cells to average.This formula is entered in cell D2 and copied down to cell D11.
=AVERAGE(OFFSET($K$1,C2,0, COUNTIF($C$2:$C$11,C2)))
rank function 01

How the Prize Formula Works

The Prize formula uses the AVERAGE function, with the OFFSET function finding the range of cells to average.
  1. The AVERAGE function will calculate the amount for each player, based on a specific range of cells:
       AVERAGE(
  2. The OFFSET function returns the range with the amounts to use for the average:
       OFFSET(
  3. In the OFFSET formula, the 1st argument is the reference cell. In this example, that is cell K1 -- the heading for the Prize amounts column. 
       $K$2,
  4. In the OFFSET formula, the 2nd argument is the number of rows down from the reference cell, that the cells to average start. The ranks are listed in ascending order, so for the Rank of 1, the cells to average would start 1 row down from the Reference cell of $K$1. The first player's rank is in cell C2, so refer to that in the formula
       C2,
  5. In the OFFSET formula, the 3rd argument is the number of columns to the right of the reference cell, that the cells to average start. You want to find amounts in the same column, so the number is zero
       0,
  6. In the OFFSET formula, the 4th argument is the number of rows to include in the range. This should be the number of players who are tied at that rank. The COUNTIF function will count the instances of the rank in column C, that are equal to the rank in C2
       COUNTIF($C$2:$C$11,C2)

RANK IF Formula

Instead of using the RANK function to compare a number to an entire list of numbers, you might need to rank a value within a specific subset of numbers. For example, rank each day's sales compared to other days in the same week.
In the screen shot below, there are sales records for two weeks.
  • Jan 2nd and Jan 4th have the highest sales in week 1, so they should have a rank of 1.
  • In week 2, Jan 10th has the highest sales, so it should have a rank of 1 for that week.
RANK IF with COUNTIFS

No RANKIF Function

There isn't a RANKIF function, but you can use the COUNTIFS function to calculate the rank based on items with the same week number.
Enter this formula in cell D2, and copy it down to the last row with data:
=COUNTIFS([Wk], [@Wk], [Sales], ">"&[@Sales])+1

How It Works

The first criterion in the formula checks for other sales with the same week number:
=COUNTIFS([Wk], [@Wk]
The second criterion find items with a larger amount in the Sales column.
[Sales],">"&[@Sales])
Then, 1 is added to that number, to get the ranking.
+1
For example, in week 1, look at the sales for Jan 3rd -- 237.
  • There are 2 dates with a larger sales in week 1 -- Jan 2nd and Jan 4th
  • Add 1 to that number, and Jan 3rd has a rank of 3
RANK IF with COUNTIFS