Help with Advanced Bulk Matching

BigMike23

New Member
Joined
Mar 17, 2023
Messages
8
Office Version
  1. 365
Platform
  1. Windows
Hello,

I am wanting to create a function that goes as follows: If the number in column E matches one of the cells in column A, then post the UPC number in the same row as the matched number in column A in column F.

So for example if E2 matched with A13, then the UPC in C13 would be posted in F2.

(picture 2) The only issue is that there are only 212 numbers in Column E while there are 293 numbers in column A. I'm wanting the UPC for every number in column E then somehow have a way to mark or highlight the UPC's already used so I can extract the ones that weren't used.

1.PNG
2.PNG
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
I think a simple Vlookup would probably give you what you want. Nobody's going to type in all your data from an image, in future please look at using the XL2BB add in to provide a sample of your data. In the meantime, see if the demo below satisfies your needs:

green.xlsm
ABCDEF
1Part numberNameUPCUPC
2123x494115455867125468243
3124x425813413117151 
4125x468243450166129421016
5126x433866411818131414263
6127x419826442687132497257
7128x461836419859133424823
8129x421016461837124425813
9130x444327472727 
10131x414263403418 
11132x497257448829 
12133x424823483915 
13134x474441466271 
14135x462070443367 
15136x450722492317 
16137x412681493971 
17138x497697493151 
18139x478048439849 
19140x484223492316 
20141x460918497649 
21142x405279448660 
Sheet4
Cell Formulas
RangeFormula
F2:F21F2=IFERROR(VLOOKUP(E2,$A$2:$C$21,3,FALSE),"")
 
Upvote 0
Solution

Forum statistics

Threads
1,224,620
Messages
6,179,925
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