...
...
Jill's
=INDIRECT("'[Download.xls]" & V4 & "'!$V$4")
The cell I am putting my formula in (V6) returns #REF!
...
Is the file Download.xls open in Excel? If not, INDIRECT won't work - Frank
mentioned that. If this file is open in Excel, are you *certain* the worksheet
name in cell V4 matches an actual worksheet name in Download.xls exactly? One
thing to check would be whether the worksheet name in Download.xls contains
leading or trailing space characters. If it does, you need to include those
space characters along with the rest of the worksheet name in cell V4.
Another way to test, enter the formula
="='[Download.xls]" & V4 & "'!$V$4"
in a blank cell in the same worksheet that contains your formula above. This
would give a text string as its result. Copy it and paste-special as value in
some other blank cell. It'll still be a text string in this other cell. Now
press [F2] followed by [Enter] in this cell. Is the result #REF! ? If so, what
is the exact result from
="='[Download.xls]" & V4 & "'!$V$4"
?