Summary Sheet Totals

G

gwhite

I have a workbook that tallys values from 30 or so separate sheets. I
there an easy way to have a summary sheet that looks at specific cell
on each sheet? Right now, I have to do a simple SUM function where
manually click on each cell on each sheet I want in the total. I'
thinking there is a way to do this with a formula/array.

Thanks,

Gar
 
D

Dave Peterson

Are they always in the same position (summing A1 of all the sheets or b22 of all
sheets)?

If yes...

You create two "helper" worksheets. One named Start and one named Finish.
(Lock all the cells and protect these two worksheets--just so no one uses them.)

Put all your "data" worksheets (and no others!) between those two worksheets.

Then you can use this on the summary sheet (outside that "sandwich")

=sum(Start:Finish!a1)

The users could even play what-if games. If they drag a data worksheet out of
the Start:Finish sandwich, then that worksheet's values will be ignored.
 

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