name of another worksheet in cell for reference

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

The first sheet in a multi-sheet workbook has only references to cells on the
other sheets. The first row on the first sheet refers to cells on the second
sheet, the second row refers to the corresponding cells on the third sheet,
and so on.

I want to put the name of each referenced sheet in a cell way out to the
right in the row on the first sheet where I want those referenced cell values
to appear. Then I would like to refer to the cell. Is that possible? In
other words, can a cell contain the name of another worksheet and then have
it be possible to put that cell into the reference? In still other words, if
the name of sheet 2 is in the text cell Z1 of sheet 1, can I somehow put the
value of cell A3 on sheet 2 into a cell on sheet 1 by using a formula like
Z1!A3?
 
You can do that with the following formula =INDIRECT($Z1 & "A3")

Although for your ease you may want to a dummy row with A3 etc in i
and just go =INDIRECT($Z1 & A$1)

Also, you should make sure that the Z dummy column includes the "!" a
the end
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top