A1 contains: Q109
=INDIRECT("'[Bookings" & A1 &".xls]Sheet1!A2")
The problem with this is that the cell reference is inside the text string,
and thus I can't copy this formula and have it automatically adjust the cell
reference for me.
Is there a way I can accomplish this such that I can get the cell reference
changed as I copy the formula?
Thanks,
Pete
=INDIRECT("'[Bookings" & $A$1 &"]Sheet1'!" & CELL("address",A2))
If this post helps click Yes
---------------
Jacob Skaria
=INDIRECT("'[Bookings" & $A$1 &".xls]Sheet1'!" & CELL("address",A2))
If this post helps click Yes
---------------
Jacob Skaria
Thus if I copy it to the next row, will A2 become A3?
Thanks
Pete
You can use absolute referencing such as $A2 is you dont want the formula to
change while copied across..OR as A$2 if you dont want the row to change