Complete the formula to add the values in cells A1 and B1.
= [1](A1, B1)The SUM function adds numbers in Google Sheets. ADD, PLUS, and TOTAL are not valid functions.
Complete the formula to multiply the value in cell C2 by 10.
= C2 [1] 10
The asterisk * is used for multiplication in formulas.
Fix the error in the formula to calculate the average of cells A1 to A5.
= [1](A1:A5)The AVERAGE function calculates the mean of the numbers in the range. SUM adds them, COUNT counts cells, and TOTAL is not a valid function.
Fill both blanks to create a formula that subtracts the value in cell B2 from cell A2 and then divides the result by 5.
= (A2 [1] B2) [2] 5
First subtract B2 from A2 using -, then divide the result by 5 using /.
Fill the blanks to create a formula that calculates the sum of cells A1 to A3 only if the value in B1 is greater than 10.
=IF(B1 [1] 10, SUM(A1:A3), 0)
The formula uses IF to check if B1 is greater than 10 (>). If true, it sums the range A1 to A3 (using :), otherwise returns 0.