Complete the formula to check if cell A1 is greater than 10.
=IF(A1 [1] 10, "Yes", "No")
The formula uses the greater than operator (>) to check if A1 is more than 10.
Complete the formula to sum the values in cells B1 to B5.
=SUM([1])The SUM function adds all numbers in the range B1 to B5.
Fix the error in the formula to calculate the average of cells C1 to C4.
=AVERAGE([1])The correct range syntax uses a colon ':' between start and end cells, like C1:C4.
Fill both blanks to create a formula that counts how many cells in D1:D10 are equal to 5.
=COUNTIF([1], [2])
The COUNTIF function needs the range D1:D10 and the criteria "5" to count cells equal to 5.
Fill all three blanks to create a formula that returns the maximum value in F1:F8 if it is greater than 50, otherwise returns "Low".
=IF(MAX([1]) [2] 50, MAX([3]), "Low")
The formula checks if the max value in F1:F8 is greater than 50. If yes, it returns that max value; otherwise, it returns "Low".