View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default adding subtotals from several worksheets

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(INDIRE CT("1:3"))&"!O:O")))


--
Biff
Microsoft Excel MVP


"bernieb" wrote in message
...
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.