G
Guest
i need to nest vlookup functions to search one worksheet
and if item is not there go to another worksheet to find
item.
and if item is not there go to another worksheet to find
item.
J.E. McGimpsey said:one way:
=IF(ISNA(MATCH(Lvalue, OFFSET(table1,,,,1), FALSE)),
IF(ISNA(MATCH(Lvalue, OFFSET(table2,,,,1), FALSE)), "",
VLOOKUP(Lvalue, table2, 2, FALSE)), VLOOKUP(Lvalue, table1, 2,
FALSE))
where table1 and table2 are references to your lookup tables.