Complete the formula to add the numbers 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 sum the values in cells B2, B3, and B4.
=SUM([1])The SUM function can add multiple cells separated by commas. So B2,B3,B4 sums those three cells.
Fix the error in the formula to sum cells C1 to C3.
=SUM(C1[1]C3)The correct way to specify a range in Excel is with a colon ':'. So C1:C3 sums cells C1 through C3.
Fill both blanks to sum cells D1 to D4 and cell D6.
=SUM([1], [2])
The formula sums the range D1:D4 and the single cell D6. Use a colon ':' for ranges and specify single cells directly.
Fill all three blanks to sum cells E1 to E3, cell E5, and cells E7 to E8.
=SUM([1], [2], [3])
The formula sums three parts: the range E1:E3, the single cell E5, and the range E7:E8. Use colons for ranges and list each part separated by commas.