Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello,
I have a workbook with 50 sheets (named 1-50 )and would like to create a summary sheet that displays the value of a cell (say A1) on each sheet. Is there some way to force an incremental increase in the sheet number as I drag a cell downward? I am not familiar with constructing macros, is there a way to do this without a macro, or with a simple macro a beginner might construct? I'd like it to look like the following. ='1'!$A$1 ='2'!$A$1 ='3'!$A$1 ='4'!$A$1 .... ='50'!$A$1 Thanks in advance for the assistance, Keven |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Starting in A1:
=indirect("'" & row() & "'!a1") (or anything that evaluates to 1 in that middle portion: =indirect("'" & row(a3)-2 & "'!a1") Keven Jeffery wrote: Hello, I have a workbook with 50 sheets (named 1-50 )and would like to create a summary sheet that displays the value of a cell (say A1) on each sheet. Is there some way to force an incremental increase in the sheet number as I drag a cell downward? I am not familiar with constructing macros, is there a way to do this without a macro, or with a simple macro a beginner might construct? I'd like it to look like the following. ='1'!$A$1 ='2'!$A$1 ='3'!$A$1 ='4'!$A$1 ... ='50'!$A$1 Thanks in advance for the assistance, Keven -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Extracting data from one Worsheet to Another Worksheet with common link value | Excel Discussion (Misc queries) | |||
Referencing a dropdown box on a worksheet | Excel Discussion (Misc queries) | |||
Referencing a worksheet name | Excel Worksheet Functions | |||
Copy from worksheet to another x times | Excel Discussion (Misc queries) | |||
Weekly Transaction Processing | Excel Worksheet Functions |