Thread: vlookup
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Rodrick Rodrick is offline
external usenet poster
 
Posts: 9
Default vlookup

Hi,

You can use the below mentioned formula.

=IF(ISERROR(VLOOKUP(lookup value,Data Table 1,4,0)),VLOOKUP(lookup
value,Data Table 2,4,0),VLOOKUP(lookup value,Data Table 1,4,0))

Here Lookup Value is the value which you want to search in both the table
array.
Data Table 1 is the reference of your 1st Data Table Array and Data Table 2
is the reference of 2nd Data Table Array.

--
Cheers.

Rodrick


"Graham" wrote:

Hi, I have two array tables and want to do a vlookup on both simultaneously.
both have colunms 1 to 4, i want to recal the value in colunm 4.thanx