View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
L. Howard Kittle
 
Posts: n/a
Default VLookUp / 2 Tables

Hi Carl,

If I understand correctly..

=IF(ISNA(VLOOKUP(F1,A1:B5,2,0)),VLOOKUP(F1,D1:E5,2 ,0),VLOOKUP(F1,A1:B5,2,0))

Where F1 is the lookup value and A1:B5 is Refman1 and D1:E5 is Refman2.
So if the F1 lookup value of Ref1 returns #N/A it will return a value from
Ref2 and if no number match there then #N/A will be returned from the Ref2
lookup.

HTH
Regards,
Howard

"carl" wrote in message
...
I have 2 tables - Refmam1 and Refman2

My lookup value is in ColA. I Want to return the value in ColB

Is it possible to use the vlookup so that it checks Refman1 and Refman2 ?

Thank you in advance.