Formula needed

snash

Board Regular
Joined
Jan 12, 2006
Messages
218
In sheet1, I have a list of barcodes.
In sheet 2 I have 2 columns of barcodes and and a column of product codes.

In sheet one, against the barcode, I'm trying to get the product code but as mentioned I've 2 columns of barcodes. how do I incorporate the 2 columns of data? Is it a lookup or ismatch or something?

Thanks in advance
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
you can do an iferror with 2 vlookups. If the barcode is not in the first column it will look in the second. So, assuming in sheet2 you have barcodes in columns A and B and the product code in column C and the barcode you're looking up is in A1 in sheet1 it will look something like this:
Code:
=IFERROR(VLOOKUP(A1,Sheet2!$A$1:$C$34,3,0),VLOOKUP(A1,Sheet2!$B$1:$C$34,2,0))

Adjust your ranges accordingly.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,626
Messages
6,120,602
Members
448,974
Latest member
ChristineC

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