Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Another approach, if you can sort the lookup table based on the key column,
you could use multiple approximate match lookups to perform an exact match lookup, which are faster using a single exact match lookup. To look up an Item in your Table and return the data from the second column: =If(Isna(Vlookup(Item, Table, 1, 1)),"missing",If(Vlookup(Item, Table, 1, 1)=Item, Vlookup(Item, Table, 2, 1), "missing")) " wrote: Hello, I need to do a Vlookup using a key column to grab about 10 columns from the lookup table (1000 rows). Using the VLOOKUP function turned out to be very inefficient (10000 cells of VLOOKUP). I was wondering if this could be accomplished more efffectively using some variation of looping/Find/replace/VBA etc. Sample code would be greatly appreciated. Manish |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to combine Combo Box function with Vlookup function | Excel Worksheet Functions | |||
Combine VLOOKUP and IF function so #NA isn't returned as a value from VLOOKUP | Excel Discussion (Misc queries) | |||
HOW DO I NEST THE VLOOKUP FUNCTION WITH THE LEFT FUNCTION | Excel Worksheet Functions | |||
how do I write a vlookup function within an iserror function so t. | Excel Worksheet Functions | |||
I want to use Vlookup function and AND function in a single formu. | Excel Worksheet Functions |