Let's say I have three sheets (let's say Sheet1
, Sheet2
and Sheet3
).
Sheet1
and Sheet2
contain each a sheet-level range named MyRange
.
In Sheet3
, if I want to access MyRange
from Sheet1
, I will just be able to use ='Sheet1'!MyRange
.
But now, I want Sheet3
To contain generic code and be able to refer either to Sheet1
or Sheet2
. So I would expect to be able to achieve the same thing using
=INDIRECT("'" & MySheetName & "'!MyRange")
However, I get the error #REF
when I do that.
If MyRange consists of a multi-row, multi-column range, then make sure that you pressed ctrl-shift-enter
when you entered =INDIRECT("'" & MySheetName & "'!MyRange")
. If you forget to use ctrl-shift-enter
, you will get a #VALUE
error. However, you stated you have a #REF
.
Using your code for a single-cell range, I get the result you are looking for. The only way I can get a #REF
error is by using the wrong sheet name. I suspect that is your problem. Check the sheet name and repost with more detail if it still doesn't work.