The proper syntax is:
=INDIRECT("'"&A1&"'!$R$7")

Signature
HTH,
RD
---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
This is not the way I want it to work since it requires the entire
reference to be in the cell A1. I need it so that it extracts the
string contained in cell A1, which is "2Q 2006" and place it in the
formula in cell A2 rather than automatically jump into the address
contained in cell A1. The appropriate function would be:
='indirect(A1)'!$R$7 in cell A2
However, the above function does not work so I'm trying to find a way
to tweak it so that it will work.
Ardus Petus wrote:
> Lokk at INDIRECT in Help
>
[quoted text clipped - 25 lines]
> >
> > Thanks.
Ragdyer - 21 Jun 2006 21:10 GMT
Actually, since the cell reference is literally 'text', you can forget about
the absolutes:
=INDIRECT("'"&A1&"'!R7")
However, if you need to actually increment *both* the sheet *and* the cell,
you could try this:
=INDEX(INDIRECT("'"&A1&"'!R:R"),ROWS($1:7))

Signature
HTH,
RD
---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
> The proper syntax is:
>
[quoted text clipped - 41 lines]
>> >
>> > Thanks.
=INDIRECT("'"&a1&"'!$r$7")
HTH
--
AP
This is not the way I want it to work since it requires the entire
reference to be in the cell A1. I need it so that it extracts the
string contained in cell A1, which is "2Q 2006" and place it in the
formula in cell A2 rather than automatically jump into the address
contained in cell A1. The appropriate function would be:
='indirect(A1)'!$R$7 in cell A2
However, the above function does not work so I'm trying to find a way
to tweak it so that it will work.
Ardus Petus wrote:
> Lokk at INDIRECT in Help
>
[quoted text clipped - 25 lines]
> >
> > Thanks.