Complete the formula to sum the values in cells A1 to A5.
=SUM([1])The SUM function adds all numbers in the range A1 to A5. The correct range syntax is A1:A5.
Complete the formula to count how many numbers are in cells B1 to B10.
=COUNT([1])The COUNT function counts numeric values in the range B1 to B10. The correct range syntax is B1:B10.
Fix the error in the formula to calculate the average of cells C1 to C7.
=AVERAGE([1])The AVERAGE function calculates the mean of numbers in the range C1 to C7. The correct range uses a colon ':' like C1:C7.
Fill both blanks to create a formula that sums values in D1 to D5 only if they are greater than 10.
=SUMIF([1], [2])
The SUMIF function sums cells in the range D1:D5 that meet the condition '>10'. The range uses a colon ':' and the condition is a string with the comparison.
Fill both blanks to create a formula that counts numbers in E1 to E10 that are less than 5.
=COUNTIF([1], [2])
The COUNTIF function counts cells in the range E1:E10 that satisfy the condition '<5'. The range uses a colon ':', and the condition is a string.