scribbler99
MIS
I have an excle spreadsheet that I need to construct a vlookup on and started searching the web for ways to do this and so far have only been able to get to the point of retrieving cell information from an workbook/worksheet that is open using the INDIRECT function. Obviously any help would be appreciated.
My cells contain the following information;
Cell B20 = test daily orders.xls
Cell B21 = DesMor-WAKE
Cell B22 = B3
The formaula I'm using at the moment is
This returns the expected value which is text to me. but I thought that I would only need to replace the Cell B20 with the full path and the name of the workbook and of course this doesn't work.
My cells contain the following information;
Cell B20 = test daily orders.xls
Cell B21 = DesMor-WAKE
Cell B22 = B3
The formaula I'm using at the moment is
Code:
=INDIRECT("'[" & B20 & "]" & B21 & "'!" & B22)
This returns the expected value which is text to me. but I thought that I would only need to replace the Cell B20 with the full path and the name of the workbook and of course this doesn't work.