Forum Discussion
ravi0408
Aug 22, 2022Copper Contributor
Prefix Name Match with starting name along with added suffixes characters.
Hi, i have a list of some names and thier new name replacement data. I want to lookup in a range where the real name have some added suffixes characters. Is there any formula which can be typ...
- Aug 22, 2022
Aug 22, 2022
Hi ravi0408
Is there a rule or pattern for the prefix?
I can see that the first name in your result table is 3 characters, while the forth one is 7 characters, and they are referring to the same name!
I will take the first 3 characters and search for the name in the table and bring the replacement using this formula:
=VLOOKUP(LEFT(E3,3),$A$3:$B$4,2,TRUE)
- ravi0408Aug 22, 2022Copper ContributorThat's not working. i want full name to be matched avoiding suffix from sample name then replace with new name.
Also see the latest example sheet to gain more in the problem.
Thanks- HansVogelaarAug 22, 2022MVP
- ravi0408Aug 23, 2022Copper ContributorThanks. this works well.