In Excel: to insert blank cells, select where they go and press Ctrl+Shift++ then choose the shift direction — to add cell values together, use =SUM(A1:A10) or =A1+A2.
On this page7
To insert: select the same number of cells as you want to add, in the place they should appear.
Press Ctrl+Shift++ or use Home ▸ Cells ▸ Insert ▸ Insert Cells.
Choose "Shift cells right" or "Shift cells down" — or Entire row / Entire column to avoid misaligning the table.
To sum: click the cell below or beside the numbers and press Alt+= for an automatic =SUM over the adjacent range.
Check the proposed range before pressing Enter; AutoSum stops at the first blank cell.
For non-adjacent cells, write =SUM(A1:A10, C1:C10) or Ctrl-click each range while the formula is open.
What this does
"Add cells" means two different things and it is worth separating them. Inserting cells pushes the existing ones down or right: select the cells, press Ctrl+Shift++ (or Home ▸ Insert ▸ Insert Cells), and pick "Shift cells right" or "Shift cells down". This is the operation that can misalign a table, because it moves only part of a row. Summing cells adds their values: =SUM(A1:A10) for a range, =A1+A2 for two, =SUM(A1:A10, C1:C10) for two separate ranges, and =SUM(Jan:Dec!B4) for the same cell across sheets. If the sum returns 0, the cells are text, not numbers. Before you run it on a workbook other people depend on, try it on a copy or a few rows first. Undo only reaches back through the current session, so a quick trial run is the cheapest way to see exactly what will change before the file is saved and shared. Treat “add a cell within a cell in excel” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected cells shows up while it is still harmless. When this is a ribbon command, the selection matters more than the button: confirm the range, apply the command, then spot-check the output before saving. That turns a layout choice that keeps the sheet readable and sortable into a method you can reuse, explain, and defend when the workbook leaves your screen.
A worked example
To push B5:B9 down by three rows without touching the neighbouring columns: select B5:B7, press Ctrl+Shift++, choose "Shift cells down", OK. To insert whole rows instead — usually what you actually want — select the row numbers first and the dialog does not appear. To total a column: click below it and press Alt+= for =SUM(A2:A20), then Enter. If that returns 0, select the range and check the status bar: if Sum is missing and only Count shows, the values are text. It is the most-asked beginner question in Excel precisely because the phrase is ambiguous, and the two answers — inserting and summing — have almost nothing in common. If this is something you do often, add the command to the Quick Access Toolbar (right-click it on the ribbon and choose Add to Quick Access Toolbar) or learn its shortcut, so next time it is one click instead of a hunt through the menus.
In Google Sheets
Excel's 3-D references that span several sheets, such as =SUM(Jan:Dec!B4), are not supported in Google Sheets; there you add the sheets individually, for example =SUM(Jan!B4, Feb!B4, Mar!B4). Keep this page bookmarked for the next time the same question comes up. Better still, repeat the steps once in your own workbook — doing it yourself is what turns a copied answer into something you remember. If you take one thing from this page on “add a cell within a cell in excel”, make it the order of checks rather than the individual clicks: confirm what is selected, apply the step, and look at the result before moving on. That small routine is what keeps Excel work predictable when the same task comes back in a slightly different workbook.
Common mistakes
- Inserting cells with a shift direction when whole rows or columns were meant, which knocks one part of the table out of alignment with the rest.
- Trusting AutoSum's proposed range, which stops at the first blank row and silently omits the rest.
- Summing a column of numbers stored as text and getting 0 — the status bar shows Count but no Sum when that is the cause.
- Including the total cell inside its own
SUMrange, which creates a circular reference. - Adding cells one by one with
=A1+A2+A3+…where=SUM(A1:A20)keeps working when rows are inserted.
Frequently asked questions
How do I add cells in Excel?
To insert blank cells, select the position and press Ctrl+Shift++, then choose the shift direction. To add values together, use =SUM(A1:A10) or press Alt+= for AutoSum.
What is the shortcut for AutoSum?
Alt+= — it inserts =SUM over the adjacent range of numbers. Always check the range it proposed before pressing Enter.
Why does my SUM return 0?
The values are text rather than numbers. Select them and look at the status bar: if it shows Count but no Sum, convert them with Data ▸ Text to Columns ▸ Finish, or multiply by 1.
How do I add cells from different sheets?
Use a 3-D reference for the same cell across a run of sheets: =SUM(Jan:Dec!B4). For arbitrary cells, =Sheet1!B4+Sheet2!C7 works too.