Complete the code to use the AutoSum shortcut in Excel to sum cells A1 to A5.
=SUM([1])The correct way to sum a range of cells from A1 to A5 is to use the range notation A1:A5 inside the SUM function.
Complete the formula to sum the numbers in cells B2 through B10 using the AutoSum shortcut.
=SUM([1])To sum a range of cells from B2 to B10, use the range notation B2:B10 inside the SUM function.
Fix the error in the formula to correctly sum cells C1 to C7 using AutoSum.
=SUM([1])The correct range to sum cells C1 to C7 is C1:C7. Using a minus or plus sign will not sum the entire range.
Complete the code to create a formula that sums cells D3 to D8 using AutoSum.
=SUM([1]:D8)The correct formula uses the start cell D3, then a colon : to indicate the range, followed by the end cell D8. Here, the blanks are for the start cell and the colon.
Fill both blanks to write a formula that sums cells E1 to E6 using AutoSum.
=SUM([1]:[2])
The formula sums from cell E1 to E6 using the colon : to specify the range. The blanks correspond to the start cell, the colon, and the end cell.