Adding cells in Excel means using a formula to sum the values you choose
The most direct way to add cells in Excel is to type a formula that names each cell you want to include. If you want to add the value in cell A1 to the value in cell B2, you type =A1+B2 into any empty cell, then press Enter. Excel shows you the result. You can add two cells, ten cells, or cells scattered across different parts of your sheet — the formula stays the same structure: an equals sign, then the cell names separated by plus signs.
Excel also offers a shortcut when you want to add many cells in a row or column at once. Instead of typing =A1+A2+A3+A4+A5, you can use the SUM function and type =SUM(A1:A5). The colon between A1 and A5 means "from A1 through A5." This saves typing and makes your formula easier to read when you come back to it later.
Key Takeaways
- Type an equals sign first, then the cell names with plus signs between them: =A1+B3+C5 adds those three specific cells.
- Use the SUM function with a colon to add a range of cells quickly: =SUM(A1:A10) adds cells A1 through A10 in one formula.
- You can mix specific cells and ranges in the same formula: =A1+SUM(B2:B8)+C9 works just fine.
- The cell where you type the formula shows the result, not the formula itself — click the cell to see the formula in the formula bar at the top.
Using the plus sign for individual cells you choose
When you want to add cells that are not next to each other, the plus-sign method is clearest. Click an empty cell where you want the answer to appear. Type the equals sign to start a formula. Then type the first cell name (like A1), then a plus sign, then the next cell name (like D4), and keep going until you have listed all the cells you want to add.
As you type each cell name, Excel highlights that cell on your sheet so you can see which one you are referring to. This is helpful if you are working with a large sheet and want to make sure you picked the right cells. When you finish typing the formula, press Enter and the result appears in your cell.
You can add as many cells as you need this way. A formula like =A1+A3+A7+B2+C9 is perfectly valid. The cells do not have to be in any particular order, and they do not have to be near each other.
Using SUM to add a continuous block of cells
The SUM function is faster when the cells you want to add are lined up in a row or column without gaps. Type =SUM(, then the first cell, a colon, the last cell, then a closing parenthesis. For example, =SUM(A1:A10) adds every cell from A1 to A10. The colon is the key — it means "through" or "all the way to."
SUM works the same way with columns. =SUM(B1:B20) adds all the values in column B from row 1 to row 20. You can also use SUM across a rectangular block: =SUM(A1:C5) adds all cells in the rectangle from A1 to C5 — that is, columns A, B, and C, rows 1 through 5.
One advantage of SUM is that if you add new data to the range later, the formula automatically includes it. If you have =SUM(A1:A10) and you put a new number in A6, the total updates without you changing the formula.
Combining specific cells and ranges in one formula
You do not have to choose between the two methods. You can mix them in a single formula. Type =A1+SUM(B2:B8)+C9 to add cell A1, all cells from B2 to B8, and cell C9 in one go. Excel handles this without any problem.
This is useful when part of your data is scattered and part is grouped together. For instance, you might have a single starting balance in A1, a list of deposits in B2 through B8, and a final adjustment in C9. One mixed formula captures all three pieces without making the formula harder to understand than it needs to be.
Seeing the formula and fixing mistakes
After you press Enter, the cell shows the result of your formula, not the formula itself. To see the formula again, click the cell with the result. Look at the top of your screen — there is a bar called the formula bar that shows the formula you typed. This is where you can edit it if you made a mistake.
If the result looks wrong, click the cell and check the formula bar to see exactly what formula is running. A common mistake is typing a cell name wrong — for instance, typing A10 when you meant A1. Another is forgetting the equals sign at the start, which makes Excel treat your entry as text instead of a formula.
To fix a formula, click the cell, then click in the formula bar at the top and edit the text there. When you press Enter, Excel recalculates with your corrected formula.
Adding cells across different sheets in the same file
If your data is on different sheets within the same Excel file, you can still add them together. The formula looks slightly different: =Sheet1!A1+Sheet2!B5. The exclamation mark tells Excel to look on a different sheet. Type the sheet name, then the exclamation mark, then the cell name.
This works with SUM as well: =SUM(Sheet1!A1:A10,Sheet2!B1:B10) adds the range A1 to A10 on Sheet1 and the range B1 to B10 on Sheet2. Notice the comma between the two ranges — that tells Excel you are adding two separate blocks.
If your sheet name has a space in it (like "Sales Data"), you need to put the name in single quotes: ='Sales Data'!A1. This tells Excel where the sheet name ends and the cell name begins.
Checking your work with AutoSum
Excel has a built-in shortcut called AutoSum that guesses which cells you want to add. Click an empty cell below or to the right of the cells you want to add, then look for the AutoSum button. In most versions of Excel, it is in the Home tab on the ribbon at the top, and it looks like the Greek letter sigma (Σ).
Click AutoSum and Excel highlights the cells it thinks you want to add. If the selection is correct, press Enter and the formula is done. If Excel picked the wrong range, you can click and drag to select the cells you actually want, then press Enter. AutoSum is a time-saver when you are adding a straightforward column or row of numbers, though you should always check that it picked the right cells before you trust the result.
Frequently Asked Questions
Can I add cells if some of them are empty?
Yes. Excel treats empty cells as zero, so they do not affect your total. If you have =SUM(A1:A10) and cells A3 and A7 are blank, the formula adds the other eight cells and ignores the empty ones. This is why SUM is safe to use even if your data has gaps.
What happens if I add cells that contain text instead of numbers?
Excel ignores text cells when you use SUM. If you have =SUM(A1:A5) and A2 contains the word "Total," Excel adds only the cells with numbers. With the plus-sign method, Excel shows an error if any cell contains text instead of a number.
Can I add the same cell more than once in one formula?
Yes, and sometimes that is useful. =A1+A1+A1 multiplies A1 by three. =SUM(A1,A1,A1) does the same thing. It is clearer to use multiplication (=A1*3), but adding the same cell multiple times works if that is what you need.
How do I add cells and then use that total in another formula?
Create the first formula in one cell, then reference that cell in your next formula. If =SUM(A1:A10) is in cell B1, you can type =B1*2 in another cell to double the total. Excel updates both formulas automatically if the original data changes.