Complete the formula to find the 3rd largest number in the range A1:A10.
=LARGE(A1:A10, [1])The formula =LARGE(A1:A10, 3) returns the 3rd largest number in the range A1:A10.
Complete the formula to find the smallest value in the range B2:B20.
=SMALL(B2:B20, [1])The formula =SMALL(B2:B20, 1) returns the smallest value in the range B2:B20.
Fix the error in the formula to find the 2nd smallest number in C1:C15.
=SMALL(C1:C15, [1])The second argument must be a positive integer. Using 2 returns the 2nd smallest number.
Fill both blanks to create a formula that finds the 4th largest number in D1:D30.
=LARGE([1], [2])
The formula =LARGE(D1:D30, 4) returns the 4th largest number in the range D1:D30.
Fill both blanks to create a formula that finds the 5th smallest number in E5:E50.
=SMALL([1], [2])
The formula =SMALL(E5:E50, 5) returns the 5th smallest number in the range E5:E50.