0
0
Excelspreadsheet~20 mins

RANK function in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
RANK Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What is the output of the RANK function?
Given the values in cells A1 to A5 as 10, 20, 20, 40, 30 respectively, what is the result of the formula =RANK(A3, A1:A5)?
A4
B3
C1
D2
Attempts:
2 left
💡 Hint
Remember that RANK returns the rank of a number in a list, with the highest number ranked 1 by default.
Function Choice
intermediate
2:00remaining
Which formula ranks numbers in ascending order?
You want to rank the number in cell B2 among the range B2:B10, where the smallest number gets rank 1. Which formula should you use?
A=RANK(B2, B2:B10, 1)
B=RANK(B2, B2:B10)
C=RANK(B2, B2:B10, 0)
D=RANK.AVG(B2, B2:B10)
Attempts:
2 left
💡 Hint
Check the third argument of RANK to control ascending or descending order.
📊 Formula Result
advanced
2:00remaining
What is the output of RANK with ties and descending order?
Given the values in C1:C6 as 50, 40, 40, 30, 20, 10, what is the result of =RANK(C3, C1:C6, 0)?
A2
B3
C1
D4
Attempts:
2 left
💡 Hint
Remember that RANK assigns the same rank to duplicate values.
🎯 Scenario
advanced
2:00remaining
Ranking with dynamic range and ignoring blanks
You have scores in cells D1:D10, but some cells are blank. You want to rank the score in D5 among only the non-blank scores, with the highest score ranked 1. Which formula correctly does this?
A=RANK(D5, IF(D1:D10<>"", D1:D10))
B=RANK(D5, D1:D10, 1)
C=RANK(D5, D1:D10)
D=RANK(D5, FILTER(D1:D10, D1:D10<>""))
Attempts:
2 left
💡 Hint
RANK automatically ignores blank cells and non-numeric values.
data_analysis
expert
3:00remaining
How many unique ranks are assigned?
Given the values in E1:E8 as 100, 90, 90, 80, 70, 70, 70, 60, if you apply =RANK(E1, E1:E8) down the column, how many unique rank numbers will appear?
A8
B6
C4
D5
Attempts:
2 left
💡 Hint
Count how many distinct values are in the list since duplicates share ranks.