Complete the formula to find the smallest number in cells A1 to A5.
=MIN([1])The MIN function finds the smallest value in a range. Use a colon : to specify the range from A1 to A5.
Complete the formula to find the largest number in cells B2 to B10.
=MAX([1])The MAX function returns the largest value in a range. Use a colon : to specify the range from B2 to B10.
Fix the error in the formula to find the minimum value in cells C1 to C8.
=MIN([1])The formula needs a proper range with a colon :. Using a dash or comma causes errors or wrong results.
Fill both blanks to create a formula that finds the maximum value between cells D3 to D7 and E3 to E7.
=MAX([1], [2])
The MAX function can take multiple ranges separated by commas. Use colons : to specify each range.
Fill all three blanks to create a formula that finds the minimum value among cells F1 to F5, G1 to G5, and the number 10.
=MIN([1], [2], [3])
The MIN function can take multiple arguments including ranges and numbers. Use colons : for ranges and just type the number directly.