Complete the formula to multiply cell A1 by 2 and copy it down the column.
=A1[1]2
The asterisk (*) is used for multiplication in Google Sheets formulas.
Complete the formula to sum cells from B1 to B5.
=SUM([1])Using B1:B5 selects the range of cells from B1 to B5 to sum.
Fix the error in the formula to calculate the average of cells C1 to C4.
=AVERAGE([1])The correct range syntax uses a colon (:), so C1:C4 selects all cells from C1 to C4.
Fill both blanks to create a formula that multiplies each value in column D by 3 for rows 1 to 5.
={D[1]*[2]D1:5 selects rows 1 to 5 in column D, and multiplying by 3 scales each value by 3.
Fill all three blanks to create a formula that sums values in E1 to E4 only if they are greater than 10.
=SUMIF(E[1], ">"&[2], E[3])
The range E1:4 selects cells E1 to E4. The condition ">"&10 means values greater than 10. The sum range is also E1:4.