Sum the Same Cell Across Sheets (3D)

Excel Formulas › Sum

All versions3D reference

When each month (or store, or department) lives on its own identical sheet, a 3D reference totals the same cell across all of them in one short formula — no linking sheet by sheet.


Quick formula: to add cell B2 on every sheet from Jan through Dec:
=SUM(Jan:Dec!B2)
The Jan:Dec part is a sheet range — every tab between Jan and Dec is included, just like a cell range includes every cell between two corners.

Functions used (tap for the full reference guide):

The example

Three monthly sheets (Jan, Feb, Mar), each with the total in B2. A summary sheet adds them.

AB
1SheetB2 value
2Jan$100
3Feb$140
4Mar$120
5=SUM(Jan:Mar!B2)$360

The formula

On the summary sheet:

=SUM(Jan:Mar!B2) // 100 + 140 + 120 = 360

How it works

A 3D reference treats stacked sheets like a third dimension:

  1. Jan:Mar names the first and last sheet in the run; Excel includes every tab physically between them.
  2. !B2 picks the same cell on each of those sheets.
  3. SUM(…) adds B2 from Jan, Feb, and Mar — 360.
  4. Drag a new sheet between Jan and Mar and it’s automatically included — the formula doesn’t change.

Use sandwich sheets. Put blank “Start” and “End” tabs around your monthly sheets and reference =SUM(Start:End!B2). Any sheet you drop between them is counted — foolproof for growing workbooks.

Try it: interactive demo

Live demo

Toggle which monthly sheets exist; watch the 3D sum.

Total:

Variations

Other functions work in 3D too

AVERAGE, MAX, MIN, COUNT all accept sheet ranges:

=AVERAGE(Jan:Mar!B2)

Sum a whole range across sheets

Not just one cell — a block on each sheet:

=SUM(Jan:Mar!B2:B10)

Quote sheet names with spaces

Wrap the sheet range in apostrophes:

=SUM('Jan 2026:Mar 2026'!B2)

Pitfalls & errors

Sheets must be physically adjacent. A 3D reference includes every tab between the two named, in tab order. If a stray sheet sits between them, it’s included too — arrange tabs deliberately or use sandwich sheets.

The cell layout must match. 3D SUM adds the same cell on each sheet, so every sheet needs its total in the same place (B2 here).

3D references don’t work in SUMIFS/COUNTIFS. Those conditional functions can’t span sheets. Consolidate the data or use Power Query for cross-sheet conditional totals.

Practice workbook

📊
Download the free Sum the Same Cell Across Sheets (3D) practice workbook
Jan/Feb/Mar sheets plus a Summary with a live 3D =SUM(Jan:Mar!B2), the AVERAGE and range variants, plus challenges with answers. No sign-up required.

Frequently asked questions

How do I sum the same cell across multiple sheets in Excel?
Use a 3D reference: =SUM(First:Last!B2), e.g. =SUM(Jan:Dec!B2). It adds cell B2 from every sheet between the first and last named tabs.
How do I make sure new sheets are included automatically?
Use sandwich sheets: place blank Start and End tabs around your data sheets and reference =SUM(Start:End!B2). Any sheet dragged between them is counted.
Can I use SUMIFS across multiple sheets?
No, conditional functions like SUMIFS and COUNTIFS can't use 3D references. Consolidate the sheets into one table (e.g. with Power Query) and then apply SUMIFS.

Stop fighting formulas. Learn them in a day.

This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related formulas: Sum by month · Sum by quarter · Running total

Function references: SUM