Complete the formula to sum values in cells A1 to A5.
=SUM([1])The correct way to sum a range in Google Sheets is using the colon to specify the range, like A1:A5.
Complete the formula to count how many cells in B1:B10 contain numbers.
=COUNT([1])The COUNT function counts numeric values in a range, so you need to specify the range with a colon, like B1:B10.
Fix the error in this formula to get the average of cells C1 to C5.
=AVERAGE([1])The correct way to specify a range in Google Sheets is with a colon, so C1:C5 selects all cells from C1 to C5.
Fill both blanks to create a formula that sums values in D1 to D10 only if they are greater than 5.
=SUMIF([1], [2])
The SUMIF function sums cells in the range D1:D10 that meet the condition '>5'.
Fill all three blanks to create a formula that counts cells in E1 to E20 that contain the text 'Done'.
=COUNTIF([1], [2], [3])
The COUNTIF function counts cells in the range E1:E20 that exactly match the text "Done". The text must be in quotes.