VLOOKUP TAB to TAB in excel 2003

sburkhar

Active Member
Joined
Oct 4, 2006
Messages
363
I need a VLOOKUP formula that will look for a price on 5 different tabs in sequence. So, if it doesn't find the price on tab 1 it will look on tab 2, then tab 3 and so on.
It also needs to be an ISERROR formula so that it will return nothing if it finds nothing.
Can you help me write that?
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
This will do it across 2 worksheets, maybe you can expand it yourself for 5.
Code:
=IF(ISERROR(VLOOKUP(A1,Sheet2!A1:B5,2,FALSE)),
IF(ISERROR(VLOOKUP(A1,Sheet3!A1:B5,2,FALSE)),"",
VLOOKUP(A1,Sheet3!A1:B5,2,FALSE)),VLOOKUP(A1,Sheet2!A1:B5,2,FALSE))

BUT, a better solution might be to combine the data from all 5 tabs onto a single tab.
 
Upvote 0

Forum statistics

Threads
1,224,616
Messages
6,179,908
Members
452,949
Latest member
beartooth91

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