Well, you can use the slightly revised files you provided.
I made a linked copy of your data in E1 columns H and A in the Lookup sheet - E1 H col is A in Lookup sheets and E1 A col is B in Lookup sheet.
Then simply use the Vlookup function as usual in E2 - see attached files.
=VLOOKUP(H2;'[E1(2).xls]Lo
Main Topics
Browse All Topics





by: barryhoudiniPosted on 2009-10-22 at 07:49:14ID: 25634876
You can't use VLOOKUP to return values from the left of the lookup range, with both workbooks open try using INDEX/MATCH, i.e. in Workbook E2 cell I2 use this formula
=INDEX('[E1(1).xls] Sheet1'!$A $2:$A$100, MATCH(H2,' [E1(1).xls ]Sheet1'!$ H$2:$H$100 ,0))
and copy down the column.
Now you can safely close the source workbook if required
regards, barry