adding accross sheets

S

SJRockower

I would have thought this was easy but I can't find the answer. How t
I construct a formula to add across sheets, i
=sum(Sheet2!A1+Sheet3!A1+Sheet4!A1) is the easy way but that get
tedious if there are more than a few sheets. wil
=sum(Sheet2:Sheet4!A1) work?

Thank
 
C

Claus Busch

Hi,

Am Sun, 21 Apr 2013 16:40:01 +0100 schrieb SJRockower:
I would have thought this was easy but I can't find the answer. How to
I construct a formula to add across sheets, ie
=sum(Sheet2!A1+Sheet3!A1+Sheet4!A1) is the easy way but that gets
tedious if there are more than a few sheets. will
=sum(Sheet2:Sheet4!A1) work?

why didn't you test it?

=SUM(Sheet2:Sheet4!A1)
will work


Regards
Claus Busch
 
G

Gord Dibben

One method for many sheets is to make a sandwich.

Summary sheet at beginning of workbook.
Add a blank sheet to right of that sheet. . . name it First
Add a blank sheet at end . . . name it Last

Formula in Summary sheet =SUM(First!A1:Last!A1)

If need new sheets insert between First and Last

Gord
 

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

Top