I am aware that you can not use Indirect to reference a closed workbook, but you can use the index function to return a value from a closed workbook such as:
=INDEX([Test.xlsx]Sheet1!C:C,14,1)
returns the value from cell C14
The indirect function also works fine, when the workbook is open; =INDIRECT("'"&$F6&"'!C14")
For the life of me i can not seem to combine the two to get my desired result, that being the value from the closed workbook.
Am I missing something or is this not possible ?
Thanks