Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11
Default How do I change the Row Reference from a seperate worksheet.

I have created 8 worksheets within a workbook. Each worksheet with in the
workbook represent an employees data abstraction works.

So what I need to do is take the following:
=SUM(Amini!M$2+Blazer!M$2+DiSalvo!M$2+Hensel!M$2+M engon!M$2+Rees!M$2)

And change the Column up to N, O, P....etc:
e.g.
=SUM(Amini!N$2+Blazer!N$2+DiSalvo!N$2+Hensel!N$2+M engon!N$2+Rees!N$2)

I can't find a way to up the column as I drag to update the column.

Thank you in advance!!!

--
Thanks,
Andy
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,365
Default How do I change the Row Reference from a seperate worksheet.

I presume you are dragging DOWN your sheet with that formula? If so, then
try this, replace each of your Sheet!M$2 references to an Offset value like
this (just showing 2 values, repeat for all)
=SUM(Offset(Amini!M$2,0,ROW()-3)+Offset(Blazer!M$2,0,ROW()-3)+....)
By the way, when you use + within a SUM, it is extraneous, your SUM
statement can be written as:
=Amini!M$2+Blazer!M$2+DiSalvo!M$2+Hensel!M$2+Mengo n!M$2+Rees!M$2
with the same results. Or if you want to still use SUM, then this give same
results:
=SUM(Amini!M$2,Blazer!M$2,DiSalvo!M$2,Hensel!M$2,M engon!M$2,Rees!M$2)
again same results, and actually slightly faster.

But back to the Offset() issue. the "-3" value I show in my example should
be the row number of the first row where you want the total of column M. So
the presumption would be that my example formula would be somewhere in row 3
of some sheet. As the formula is dragged down the sheet, the value of ROW()
increases, but always subtracts first row number, so the column offset
increases by one for each row you drag it down the sheet.


"Andy" wrote:

I have created 8 worksheets within a workbook. Each worksheet with in the
workbook represent an employees data abstraction works.

So what I need to do is take the following:
=SUM(Amini!M$2+Blazer!M$2+DiSalvo!M$2+Hensel!M$2+M engon!M$2+Rees!M$2)

And change the Column up to N, O, P....etc:
e.g.
=SUM(Amini!N$2+Blazer!N$2+DiSalvo!N$2+Hensel!N$2+M engon!N$2+Rees!N$2)

I can't find a way to up the column as I drag to update the column.

Thank you in advance!!!

--
Thanks,
Andy

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Cross Reference 2 columns in seperate workbooks PCakes Excel Worksheet Functions 2 January 26th 07 05:57 PM
Chart in seperate worksheet Jay Charts and Charting in Excel 3 October 19th 06 08:43 PM
How to change reference to other worksheet by changing one cell? Ms.Vahl Excel Worksheet Functions 2 November 10th 05 06:56 AM
Using the results from two seperate cells to create cell reference DarrenWood Excel Worksheet Functions 2 November 14th 04 10:35 PM
Using the results from two seperate cells to create cell reference DarrenWood Excel Worksheet Functions 0 November 14th 04 10:20 PM


All times are GMT +1. The time now is 02:26 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"