Extract after partial match of data

satish78

Board Regular
Joined
Aug 31, 2014
Messages
218
Hi Friends,

I have list of extracted list from google results.
Which I need to extract the text after the partial match.

Here is an example

A1 B1 C1
is also known as JBoss is also known as WildFly Need a formula to match partial data A1 to B1 and result will be "Wildfly" in C1

Can anyone help me with this task?

Appreciate you help guys

Thanks
Satish
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
I think this may do what you want...

=TRIM(MID(B1,SEARCH(A1,B1)+LEN(A1),LEN(B1)))
 
Upvote 0
Hi Rick,

What is the another formula which want to get before word or words of partial matched data like
Java 3D is an API of Java

Where I want to extract Java 3D in C1 column.

Thanks
 
Upvote 0
What is the another formula which want to get before word or words of partial matched data like
Java 3D is an API of Java

Where I want to extract Java 3D in C1 column.
Give this a try...

=TRIM(LEFT(B1,SEARCH(A1,B1)-1))
 
Upvote 0

Forum statistics

Threads
1,223,243
Messages
6,170,971
Members
452,371
Latest member
Frana

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