Hi Rodrigues ,
The following works , but it is cumbersome to use this construct since the address has to be manually entered for every cell.
=INDIRECT("'" & BasePath & "[Prod Log Days " & CurrentDate & ".xls]A - M'!$B$4")
How can you use INDIRECT on A4 , since A4 contains a value ?
Or do you want to lookup the value in A4 in the other file ? If so , then the formula will need to be just a VLOOKUP , as in :
=IFERROR(VLOOKUP(A5,INDIRECT("'" & BasePath & "[Prod Log Days " & CurrentDate & ".xls]A - M'!$A$4:$B$6"),2,FALSE),0)
Narayan