View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
pfrieder pfrieder is offline
external usenet poster
 
Posts: 3
Default Is it possible to offset a worksheet reference?

Thanks, this is a good suggestion. In my case, however, SheetN is where the
summation is located so this approach would produce a circular reference. I
still wonder if there is any mechanism that actually offsets a worksheet
reference, or if I am stuck with using a work-around.

"Shane Devenshire" wrote:

Hi,

You could use something like this:

=SUM(Sheet1:SheetN!O4)-Sheet1!O4-SheetN!O4

--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"pfrieder" wrote:

I have a workbook with n worksheets. I would like to sum the cells from
Sheet2 to Sheet(n-1). The names of sheets 1 and n are static, but names on
other sheets change. Is there any way to do a 3D reference with an offset in
the worksheet specifier, so that the formula works regardless of the number
or names of the worksheets in the middle? Something like
=SUM(('Sheet1'+1):('SheetN'-1)!O4)