partial match - Vlookup

tandv

New Member
Joined
Dec 25, 2014
Messages
9
I have data in below format
1. Match String where it's extract with pipe character. Raw Data in simple form with specific values.
I need to perform "Match String " against "Raw data" column and see whether it exists in Raw Data. If it exist, then I expect to return value from "Raw Data" column.
I tried with Vlookup (using wild char) but it didn;t work. Is there any other suggestion?

Match StringRaw DataMatch?
A:B|C:D|E:FAA
A:B|C:D|E:FBB
A:B|C:D|E:FGNone
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Try:
Book1
ABC
1Match StringRaw DataMatch?
2A:B|C:D|E:FAA
3A:B|C:D|E:FBB
4A:B|C:D|E:FGNone
Sheet1
Cell Formulas
RangeFormula
C2:C4C2=IF(ISNUMBER(FIND(B2,A2)),B2,"None")
 
Upvote 0
thanks for response. I realized, column B exists in separate tab so question is slightly different. Column B "Raw Data" is unique however I expect multiple matches against column A "Match String" so result may be similar as below

Match StringRaw DataMatch?
A:B|C:D|E:FAA,B
A:B|C:D|E:FBA,B
A:B|C:D|E:FGNone
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,178
Members
453,021
Latest member
Justyna P

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