Multiple vlookup

R

Robo

I have 3 data sources and one summary page. I want to lookup a cell i
my summary page and find the result in either one of my 3 dat
sources(All within the same spreadsheet)

In summary I need

if vlookup data source 1 is #N/A THEN vlookup data source 2, if dat
source 2 is #N/A vlookup data source 3. If not in all 3 data source
"Not Found"

I this possible?

Thanks

Rob
 
B

Bob Phillips

=IF(ISNA(vlookup_formula1),IF(ISNA(vlookup_formula2),IF(ISNA(vlookup_formula
3),"",vlookup_formula3),vlookup_formula2),vlookup_formula1)

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
R

Robo

Bob, thanks for your help but....


"=IF(ISNA(vlookup(a39,grml_owner,3,false),IF(ISNA(vlookup(a39,gt_owner,3,false),IF(ISNA(vlookup(a39,er_owner,3,false),"",vlookup(a39,er_owner,3,false),vlookup(a39,gt_owner,3,false),vlookup(a39,grml_owner,3,false)


The formula does not work at ,"",

Any ideas?

Thanks

Ro
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top