Tough one !

aamara

New Member
Joined
Mar 17, 2008
Messages
34
I have two columns of names where I want to compare significant changes took place on these names. For example, the first cell contains the name (Jack Welch) while the adjasent cell contains the name (Jack S. Welch). As this change is not significant, I want to accept it.

On the other hand, if the adjasent cell contains the name (Bashar Amara), then I want it to be highlighted as this change is considered as significant.

Is this possible ?? :confused:

Thanks for help :):)
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Excel isn't really that "smart". It can compare strings or parse them (such as using FIND, LEFT, RIGHT, MID, etc. functions), but it can't "think". So, I believe the answer is No.

However, if you can re-word the problem more specifically, with finite comparison choices, you may can knock out a major part of it.
 
Upvote 0
Column A has Original_Name and B hase Possible_Modified_Name you could try
=IF(ISERROR(AND(FIND(LEFT(A1,FIND(" ",A1)-1),B1),FIND(RIGHT(A1,LEN(A1)-FIND(" ",A1)),B1))),1,0)
It is a bit ugly and nasty :biggrin: but will identify if you have a complete name change in first or last. Stick it in conditional formatting as needed and select your background color.Will this help?
 
Upvote 0

Forum statistics

Threads
1,214,940
Messages
6,122,352
Members
449,080
Latest member
Armadillos

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