Complete the formula to sum values in cells A1 to A5.
=SUM([1])The correct way to specify a range in Excel is using a colon (:), so A1:A5 sums all cells from A1 to A5.
Complete the formula to find the average of numbers in cells B1 to B10.
=AVERAGE([1])Using B1:B10 selects the range of cells from B1 to B10 for the AVERAGE function.
Fix the error in the formula to count how many cells in C1 to C20 contain numbers.
=COUNT([1])The COUNT function needs a proper range, which is C1:C20 using a colon.
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 E15 containing text starting with 'A'.
=COUNTIF([1], [2] & "[3]")
The COUNTIF function counts cells in E1:E15 where the text starts with A. The asterisk (*) is a wildcard meaning any characters after 'A'.