Where is the reference? On sheet1, sheet2, or a third sheet?
Look at the INDIRECT function in XL Help. It's what you need to use, but the simplest syntax for combining the sheet names will depend on what defaults apply by virtue of whether the cell with the reference is on the same sheet as the cell with the address or the cell with the data.
=INDIRECT("Sheet2!"&Sheet1
should work anywhere.
If the reference and address are both on c1, then
=INDIRECT("Sheet2!"&C2)
will work.
Main Topics
Browse All Topics





by: calacucciaPosted on 2004-02-19 at 13:51:51ID: 10406937
Indirect:
!C2)
=Indirect("Sheet2!"&Sheet1
This corresponds to =Sheet2!G25 if C2 = 25