A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

HELP!! How to formula the "sheet" link



 
 
Thread Tools Display Modes
  #1  
Old May 20th, 2010, 11:03 PM posted to microsoft.public.excel.worksheet.functions
hsfnwa
external usenet poster
 
Posts: 8
Default HELP!! How to formula the "sheet" link

Hi ,

I have a workbook contains 1+50 worksheet, I want to link each sheet number
to sheet one, besides manually change the sheet # in the formula
=SUM('sheet02'!$H$16:$H$21,'sheet02'!$H$26)
=SUM('sheet03'!$H$16:$H$21,'sheet03'!$H$26)
=SUM('sheet04'!$H$16:$H$21,'sheet04'!$H$26)
=SUM('sheet05'!$H$16:$H$21,'sheet05'!$H$26) ..... up to sheet 50...

Can someone help me to automatic it in anyway?

Thank you very much!!!!
Nicole
  #2  
Old May 20th, 2010, 11:49 PM posted to microsoft.public.excel.worksheet.functions
Chip Pearson
external usenet poster
 
Posts: 1,343
Default HELP!! How to formula the "sheet" link

Try a formula like the following:

=SUM(INDIRECT("Sheet"&TEXT(ROW()-4+2,"00")&"'!$H$16:$H$21"),INDIRECT("Sheet"&TEXT(R OW()-4+2,"00")&"!$H$26"))

Change both instances of 4 to the row number in which you enter the
formula. Change both instances of the 2 to the first number of
SheetNN. Copy this formula down for 50 rows.


Cordially,
Chip Pearson
Microsoft Most Valuable Professional,
Excel, 1998 - 2010
Pearson Software Consulting, LLC
www.cpearson.com





On Thu, 20 May 2010 15:03:01 -0700, hsfnwa
wrote:

Hi ,

I have a workbook contains 1+50 worksheet, I want to link each sheet number
to sheet one, besides manually change the sheet # in the formula
=SUM('sheet02'!$H$16:$H$21,'sheet02'!$H$26)
=SUM('sheet03'!$H$16:$H$21,'sheet03'!$H$26)
=SUM('sheet04'!$H$16:$H$21,'sheet04'!$H$26)
=SUM('sheet05'!$H$16:$H$21,'sheet05'!$H$26) ..... up to sheet 50...

Can someone help me to automatic it in anyway?

Thank you very much!!!!
Nicole

  #3  
Old May 21st, 2010, 12:23 AM posted to microsoft.public.excel.worksheet.functions
Max
external usenet poster
 
Posts: 8,574
Default HELP!! How to formula the "sheet" link

Replace this "start" formula:
=SUM('sheet02'!$H$16:$H$21,'sheet02'!$H$26)


with this equivalent using INDIRECT & ROWS as the incrementer:
=SUM(INDIRECT("'Sheet"&TEXT(ROWS($1:1)+1,"00")&"'! H16:H21"),INDIRECT("'Sheet"&TEXT(ROWS($1:1)+1,"00" )&"'!H26"))
then just copy it down as far as required (by 50 rows or so)
Success? hit the YES below
--
Max
Singapore
---
"hsfnwa" wrote:
I have a workbook contains 1+50 worksheet, I want to link each sheet number
to sheet one, besides manually change the sheet # in the formula
=SUM('sheet02'!$H$16:$H$21,'sheet02'!$H$26)
=SUM('sheet03'!$H$16:$H$21,'sheet03'!$H$26)
=SUM('sheet04'!$H$16:$H$21,'sheet04'!$H$26)
=SUM('sheet05'!$H$16:$H$21,'sheet05'!$H$26) ..... up to sheet 50...

Can someone help me to automatic it in anyway?

Thank you very much!!!!
Nicole

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 05:12 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.