View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Pete_UK Pete_UK is offline
external usenet poster
 
Posts: 8,856
Default Copying a cell ref. down a column, changing worksheet # along the

You could use this formula instead:

=INDIRECT("'Sheet"&ROW(A1)&"'!$B$1")

and then copy it down.

Hope this helps.

Pete

"olivia" wrote in message
...
I am referencing the same cell from multiple worksheets onto a "summary"
worksheet. for example,
A1='sheet 1'!$B$1
then I want to copy and paste down the column
A2='sheet 2'!$B$1
A3='sheet 3'!$B$1
Ax ='sheet x'!$B$1

Is there a way to have the sheet number change as I drag down? When I do,
the same sheet and cell number are copied.
Thanks.