partial match vlookup with string

DChicoine

New Member
Joined
Jul 29, 2016
Messages
4
I'm trying to do a vlookup with a partial match. I have a set of Item IDs and I'm trying to identify their item categories. Each item of the same category has the same abbreviation as part of their ID.

IDs
ABC12342 xyz
DEF73829 yzx
GHI93592 zyx

Key
ABC = Category 1
DEF = Category 2
GHI = Category 3

I'm trying to figure out a formula to put the corresponding category next to the item codes.
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Try this:

=VLOOKUP(LEFT(A2,3),$A$7:$B$9,2)

$A$7:$B$9 is your lookup table with key codes in column A and category names in column B.
 
Upvote 0
The lay-out is not clear. Does the upper exhibit consist of 1 column or 2 columns? The same holds for the lower exhibit...
 
Upvote 0
=VLOOKUP(LEFT(A2,3),$A$7:$B$9,2,False) works, but is there a way to make it so it gives back the category if the ID contains the abbreviation anywhere in it?

i.e.
ABC12342 xyz -> Category 1
xyz ABC10391 -> Category 1
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,869
Members
449,054
Latest member
juliecooper255

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