using VLOOKUP from MS Access
I'm openning an excel workbook with many spreadsheets from MS Access by using
the following code:
Dim xlapp As New Excel.Application
Dim xlbook As New Excel.Workbook
Set xlbook = xlapp.Workbooks.Open(strFileName, True)
How could I use VLOOKUP to find a needed number from Sheet1 in this workbook?
Thanks
|