Same range
=SUM(January!B2:B20,February!B2:B20,March!B2:B20)Adds several ranges.
Add the same cell or range from several worksheet tabs.
Add the same cell or range from several worksheet tabs. Use =SUM(January!B2,February!B2,March!B2), then replace the sample ranges with the columns in your sheet.
List each sheet reference inside SUM. Quote names that contain spaces.
| A | B | |
|---|---|---|
| 1 | Sheet | B2 value |
| 2 | ||
| 3 | ||
| 4 |
=SUM(January!B2:B20,February!B2:B20,March!B2:B20)Adds several ranges.
=SUM('Jan Sales'!B2,'Feb Sales'!B2)Single quotes protect names containing spaces.
=SUM(MAP(A2:A4,LAMBDA(s,INDIRECT("'"&s&"'!B2"))))Reads sheet names from cells.
Choose the tab again in the formula so Sheets writes the current name.
Prefer direct sheet references when the tab list rarely changes.
Choose the tab again in the formula so Sheets writes the current name.
Prefer direct sheet references when the tab list rarely changes.
Send this recipe to the SheetSteps assistant and describe how your columns are arranged.