Complete the formula to find the smallest number in cells A1 to A5.
=MIN([1])The MIN function needs a range like A1:A5 to find the smallest value in those cells.
Complete the formula to find the largest number in cells B2 to B6.
=MAX([1])The MAX function requires a range like B2:B6 to find the largest value in those cells.
Fix the error in the formula to find the smallest number in cells C1 to C4.
=MIN([1])The correct range uses a colon : between the first and last cell to include all cells in between.
Fill both blanks to create a formula that finds the largest number in cells D1 to D3 and E1 to E3.
=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 smallest number among cells F1 to F4, G1 to G4, and the number 10.
=MIN([1], [2], [3])
The MIN function can take multiple ranges and numbers separated by commas. Use colons : for ranges and just write the number directly.