Complete the formula to sum values in cells A1 to A5.
=SUM([1])The correct way to sum a range of cells from A1 to A5 is to use A1:A5 inside the SUM function.
Complete the formula to count how many cells in B1 to B10 are not empty.
=COUNTA([1])The COUNTA function counts non-empty cells in a range. The range must be written as B1:B10.
Fix the error in this formula to calculate the average of cells C1 to C5.
=AVERAGE([1])The correct range for the AVERAGE function is C1:C5. Using a colon specifies the continuous range.
Fill both blanks to create a formula that counts cells in D1 to D10 that are greater than 50.
=COUNTIF([1], [2])
The COUNTIF function needs a range and a condition as a text string. The range is D1:D10 and the condition is ">50" with quotes.
Fill all three blanks to create a formula that sums values in E1 to E10 only if they are less than 100.
=SUMIF([1], [2], [3])
The SUMIF function needs a range, a condition as a text string, and the sum range. Here, the range and sum range are both E1:E10, and the condition is "<100".