Complete the formula to calculate the average of values in cells A1 to A10.
=AVERAGE([1])The correct range syntax in Google Sheets uses a colon to specify a range, like A1:A10. This tells the formula to include all cells from A1 through A10.
Complete the formula to count how many cells in B1:B20 contain numbers.
=COUNT([1])The COUNT function counts numeric values in a range. The correct range syntax is B1:B20.
Fix the error in this formula that sums values in C1 to C15 but skips empty cells.
=SUMIF([1], ">0")
The SUMIF function needs a proper range like C1:C15 to check each cell. Using a colon defines the range correctly.
Fill both blanks to create a formula that counts cells in D1:D30 that are greater than 50.
=COUNTIF([1], [2])
The COUNTIF function needs a range and a condition. The range is D1:D30 and the condition to count numbers greater than 50 is ">50".
Fill all three blanks to create a formula that sums values in E1:E25 only if they are less than 100.
=SUMIF([1], [2], [3])
The SUMIF function takes three parts: the range to check (E1:E25), the condition ("<100"), and the range to sum (also E1:E25 in this case).