Complete the formula to calculate the average of numbers in cells A1 to A5.
=AVERAGE([1])The correct range syntax in Google Sheets uses a colon to specify a continuous range of cells, like A1:A5.
Complete the formula to calculate the average of numbers in cells B2, B4, and B6.
=AVERAGE([1])To average specific cells that are not in a continuous range, list them separated by commas inside the function.
Fix the error in the formula to correctly calculate the average of cells C1 to C3.
=AVERAGE(C1[1]C3)The colon ':' is required to specify a range from C1 to C3 in Google Sheets.
Fill both blanks to calculate the average of cells D1 to D4 and ignore empty cells.
=AVERAGE([1][2])
The correct way to specify the range is D1:D4. The second blank is empty because the range is complete.
Fill all three blanks to calculate the average of cells E1, E3, and E5.
=AVERAGE([1],[2],[3])
List each cell separated by commas inside the AVERAGE function to include non-continuous cells.