adding subtotals from several worksheets

B

bernieb

I am trying to figure out how to create a "Grand Total" on my final worksheet
containing the sum of subtotals from several previous worksheets. Such as,
cell O33 from worksheet1, cell O44 from worksheet2, cell O58 from
worksheet5....etc.... not sure where to even find a HELP item on this.
 
T

T. Valko

Here's a *REMOTE* possibility making *a lot* of assumptions**:

If these cells are SUMS then there's a good chance** that these values are
the max values in those columns.

Your sheet names follow some kind of sequential pattern** like Sheet1,
Sheet2, Sheet3, etc.

The sheets you want totaled are a contiguous block** like
SUM(Sheet1,Sheet2,Sheet3), not like SUM(Sheet1,Sheet5,Sheet22)

Based on all of those improbable assumptions, this formula will sum the max
values from sheet's 1:3 column O:

=SUMPRODUCT(SUBTOTAL(4,INDIRECT("sheet"&ROW(INDIRECT("1:3"))&"!O:O")))
 
D

David Biddulph

Type an = sign in the cell where you want your Grand Total, then go to the
first sheet and click in the relevant cell to add, then type + sign, then
click in the relevant cell on the next sheet, then another plus sign, on
until you get to the cell on the last sheet, and enter.

You should end up with a formula like =Sheet1!O33+Sheet2!O44+Sheet5!O55
 

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