Chihiro
Excel Ninja
As I have stated previously. You can't access closed workbook using VLOOKUP function, when the workbook is in network drive, without letter assignment. This holds true, even if VLOOKUP is used as WorksheetFunction in VBA.
Test if below code at least succeeds in opening the workbook in network drive.
Test if below code at least succeeds in opening the workbook in network drive.
Code:
Sub test()
Workbooks.Open ("\\delindp08\Suhas\Look.xlsb")
End Sub