Complete the formula to sum values in cells A1 to A5.
=SUM([1])The SUM function adds all numbers in the range A1 to A5.
Complete the formula to find the average of cells B1 to B10.
=AVERAGE([1])The AVERAGE function calculates the mean of the numbers in the range B1 to B10.
Fix the error in the formula to count how many cells in C1:C20 contain numbers.
=COUNT([1])The COUNT function requires a range like C1:C20 to count numeric cells.
Fill both blanks to create a formula that returns the maximum value in D1:D15 if it is greater than 50.
=IF(MAX([1]) [2] 50, MAX(D1:D15), "No")
MAX(D1:D15) finds the highest value in the range. The IF checks if it is greater than 50.
Fill all three blanks to create a formula that counts how many cells in E1:E20 are less than 100.
=COUNTIF([1], "[2][3]")
COUNTIF counts cells in E1:E20 where the value is less than 100 using the criteria "<100".