Vlookup

Mr_Adams

Active Member
Joined
Oct 7, 2002
Messages
475
I want to do a vlookup and if #N/A is returned do the lookup on a different sheet. Is this possible?

vlook up one
VLOOKUP(A1,'2002'!$A$1:$B$2341,2,FALSE)

vlookup two
VLOOKUP(A1,'1997'!$A$1:$B$1810,2,FALSE)

I tried to combine with an If but it did not work

=IF(VLOOKUP(A1,'2002'!$A$1:$B$2341,2,FALSE)="#N/A",VLOOKUP(A1,'1997'!$A$1:$B$1810,2,FALSE),VLOOKUP(A1,'2002'!$A$1:$B$2341,2,FALSE))
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Try

=IF(ISNA(VLOOKUP(A1,'2002'!$A$1:$B$2341,2,FALSE)),VLOOKUP(A1,'1997'!$A$1:$B$1810,2,FALSE),VLOOKUP(A1,'2002'!$A$1:$B$2341,2,FALSE))
 
Upvote 0
That is pretty simple

I was looking in the help files, and ISNA was never mentioned.

But of coarse now that I know what to look for, I see it

Thanks NVBC
(y)
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,195
Members
449,072
Latest member
DW Draft

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top