Finding Words with in Excel

ravaz

Board Regular
Joined
Mar 25, 2008
Messages
196
I have a sheet with a list of name example Aaron Tumbler, chris Turner etc

Have got another sheet in which the names are mentioned as Tumbler Aaron, Turner Chris...

Need help to check whether name mentioned in sheet 2 is there in sheet 1

Thanks for your help
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Can you reverse the text in one list so you are looking at like for like
=RIGHT(a1,LEN(A1)-FIND(" ",A1))&" "&LEFT(A1,FIND(" ",A1)-1)
Change A1 to the cell containing the name you would like to reverse around or put it into formula in lookup or match
 
Upvote 0
Hi,

You can do this:


Book1
ABCD
1On Sheet 1?
2Aaron TumblerJill DoeYes
3chris TurnerTumbler AaronYes
4Jane DoeTurner ChrisYes
5Jill DoeJohn DoeNo
Sheet519
Cell Formulas
RangeFormula
D2=IF(ISNUMBER(LOOKUP(2,1/SEARCH(C2,A$2:A$5&" "&A$2:A$5))),"Yes","No")


Change adjust Cell references/Range, add Sheet Names, as needed, formula copied down.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,199
Members
449,072
Latest member
DW Draft

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