Sum function across multiple sheets

  • Thread starter Thread starter neta
  • Start date Start date
N

neta

Hi,
What is the spelling of the SUM function in order to sum up specifi
cell (or range) across all the sheets within the same workbook
without specifing each sheet name seperately and includes all sheets o
the workbook (even if new sheest are added later).

Thanks in advance. Net
 
Hi,

=SUM('Sheet1:Sheet3'!A1:A20)

Notes:
The formula assumes that Sheet1 is the first and Sheet3 is the last sheets
in a range of sheets.
I added the single quatation marks jut in case any of the two names contain
spaces.

Regards,
KL
 
Something like:

=SUM('Sheet1:Sheet10'!A1)

You don't need the single quotes in this example but you would need them if
the sheet names contained spaces.

There is no way to automatically adjust the formula for sheets added at the
beginning or the end of the existing worksheets, unless the two end sheets
are "dummy" sheets that will always stay hidden. Sheets that are inserted
between the end sheets will be automatically accounted for.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top