I want to use INDIRECT to access a cell from another spreadsheet by name. For example, if “xyz” is a global name for A1 in “file%20b.ods” I expect this formula to work:
=INDIRECT("'file:///path-to/file%20b.ods'#xyz")
but I just get #REF. Am I doing something wrong? (Of course I’m actually using the real path.)
This works:
='file:///path-to/file%20b.ods'#xyz
But that isn’t powerful enough because I need to use an expression to produce the name.
I’m using 4.0.3.3 on Mac OS X 10.8.3. I thought that it was working before 4.0.3, but I can’t reproduce it working in 3.6.4, so I may be thinking of a different case.