Challenge - 5 Problems
RANK Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2: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)?Attempts:
2 left
💡 Hint
Remember that RANK returns the rank of a number in a list, with the highest number ranked 1 by default.
✗ Incorrect
The value in A3 is 20. The list is 10, 20, 20, 40, 30. The highest value is 40 (rank 1), then 30 (rank 2), then both 20s (rank 3), then 10 (rank 5). Since RANK assigns the same rank to duplicates, both 20s get rank 3. So the rank of A3 (20) is 3.
❓ Function Choice
intermediate2: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?
Attempts:
2 left
💡 Hint
Check the third argument of RANK to control ascending or descending order.
✗ Incorrect
The RANK function's third argument controls order: 0 or omitted means descending (largest is rank 1), 1 means ascending (smallest is rank 1). So =RANK(B2, B2:B10, 1) ranks ascending.
📊 Formula Result
advanced2: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)?Attempts:
2 left
💡 Hint
Remember that RANK assigns the same rank to duplicate values.
✗ Incorrect
C3 is 40. The list descending is 50 (rank 1), both 40s (rank 2), 30 (rank 4), 20 (rank 5), 10 (rank 6). Both 40s get rank 2. So the rank of C3 is 2.
🎯 Scenario
advanced2: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?
Attempts:
2 left
💡 Hint
RANK automatically ignores blank cells and non-numeric values.
✗ Incorrect
Option C uses RANK directly, which ignores blanks (non-numeric), ranking D5 only among non-blank scores (highest rank 1 by default). Option C ranks ascending. Option C is invalid syntax (IF returns FALSE for blanks). Option C uses FILTER (Excel 365+ only).
❓ data_analysis
expert3: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?Attempts:
2 left
💡 Hint
Count how many distinct values are in the list since duplicates share ranks.
✗ Incorrect
The distinct values are 100, 90, 80, 70, 60 — 5 unique values. RANK assigns the same rank to duplicates, so only 5 unique ranks appear.