Complete the formula to rank the value in cell A2 among the range A2:A10.
=RANK([1], A2:A10)The RANK function needs the cell value to rank as the first argument. Here, it is A2.
Complete the formula to rank the value in B3 among the range B2:B10 in ascending order.
=RANK([1], B2:B10, 1)
The first argument should be the value you want to rank, which is in cell B3.
Fix the error in the formula to rank the value in C4 among C2:C10 in descending order.
=RANK(C4, [1], 0)
The range to rank against must include all values, here C2:C10. Using C4:C10 excludes some values.
Fill both blanks to rank the value in D5 among D2:D10 in ascending order.
=RANK([1], [2], 1)
The first blank is the value to rank (D5). The second blank is the full range (D2:D10).
Fill all three blanks to rank the value in E6 among E2:E12 in descending order.
=RANK([1], [2], [3])
The first blank is the value cell (E6), the second is the range (E2:E12), and the third is 0 for descending order.