I've created (with several variables) several cells that contain a full string of what should retrieve data from a different workbook however it's not working due to my lack of knowledge with INDIRECT and the &
so here's what i'm doing
cell value ='C:\test\[mytest.xlsx]worksheet name'!G20
if I input that data manually it returns the value (in this case a date)
Let's assume The cell that contains that string is A1
I've tried
=INDIRECT(A1)
result #REF or #Name (and the workbook IS open)
I'm wondering if I have to break down the 'path' [worksheet name] and !cell number and use something like this
=INDIRECT("'" & A1 & "'!" & B2) or something?
And to complicate things even more I'll need to append this
=IF(ISBLANK(INDIRECT(a1),"",INDIRECT(a1))
that's pretty self explanatory..
I'm lost
Thanks in Advance
so here's what i'm doing
cell value ='C:\test\[mytest.xlsx]worksheet name'!G20
if I input that data manually it returns the value (in this case a date)
Let's assume The cell that contains that string is A1
I've tried
=INDIRECT(A1)
result #REF or #Name (and the workbook IS open)
I'm wondering if I have to break down the 'path' [worksheet name] and !cell number and use something like this
=INDIRECT("'" & A1 & "'!" & B2) or something?
And to complicate things even more I'll need to append this
=IF(ISBLANK(INDIRECT(a1),"",INDIRECT(a1))
that's pretty self explanatory..
I'm lost
Thanks in Advance