How to sum multiple sheets in excel
Tutor 5 (11 Reviews)
Excel Tutor
Still stuck with a Excel question
Ask this expertAnswer
To sum multiple sheets in Excel, you can use a 3D reference, which allows you to consolidate data across several sheets into a single formula.
Steps to sum the same cell across multiple sheets
-
Arrange your sheets in a sequence (e.g., Sheet1, Sheet2, Sheet3).
-
Click the cell where you want the total to appear.
-
Type the formula using the following structure:
=SUM(Sheet1:Sheet3!A1)
-
Sheet1 is the first sheet in the range.
-
Sheet3 is the last sheet in the range.
-
A1 is the cell you want to sum from each sheet.
-
Excel will sum all values in cell A1 across all sheets from Sheet1 to Sheet3.
Steps to sum different cells across multiple sheets
-
Click the cell where the total will appear.
-
Type the formula using individual references:
=Sheet1!A1 + Sheet2!B1 + Sheet3!C1
-
This method is useful when the cells to sum are not in the same location on each sheet.
Using the SUM function with non-adjacent sheets
-
If the sheets are not next to each other, manually select the cells by holding the Ctrl key while clicking each sheet tab.
-
Then type the formula using
+between references.
Tips
-
Ensure sheet names with spaces are enclosed in single quotes, e.g.,
=SUM('January Sales':'March Sales'!B2)
-
Use consistent cell locations across sheets for faster summing.
-
Avoid deleting sheets in the range; it will change the 3D reference formula.
Example
You have sales data in Sheet1, Sheet2, Sheet3, and each sheet has the total in cell B5. To get the combined total:
=SUM(Sheet1:Sheet3!B5)
This adds B5 from all three sheets, giving a consolidated total.
. Was this Helpful?Related Questions
Get Online Tutoring or Questions answered by Experts.
You can post a question for a tutor or set up a tutoring session
Answers · 1
How to sort by highlighted cells in excel
Answers · 1
How to sort excel by column and keep rows together
Answers · 1
How to sort by time in excel
Answers · 1
How to sort alphabetically in excel by last name
Answers · 1