Formula to remove initials from a name

FlowersinExcel

New Member
Joined
Dec 6, 2019
Messages
16
Office Version
  1. 2016
Platform
  1. Windows
Hi all,
I've looked at other threads asking how to remove a middle initial from a name, and tried those formulas with no luck, so I want to ask here. How to I remove the initials from this list of first names?
Full NameLast NameFirst NameFirst name that I want to appear
These are hard-coded=LEFT(A3,FIND(", ",A3,1)-1)=RIGHT(A3,LEN(A3)-FIND(", ",A3,1)-1)?????
Kim, Ki Tae RickKimKi Tae RickKi Tae Rick
Kim, Sa KeeKimSa KeeSa Kee
Rodriguez Vasquez, Vanessa SRodriguez VasquezVanessa SVanessa
Amador, Omar MAmadorOmar MOmar
Cruz, AiCruzAiAi

Thanks so much!
 
Excel Formula:
=IFERROR(IF(LEN(MID(TRIM(MID(A3,SEARCH(",",A3)+1,95)),1+SEARCH(" ",TRIM(MID(A3,SEARCH(",",A3)+1,95))),95))=1,MID(TRIM(MID(A3,SEARCH(",",A3)+1,95)),1,SEARCH(" ",TRIM(MID(A3,SEARCH(",",A3)+1,95)))-1),TRIM(MID(A3,SEARCH(",",A3)+1,95))),TRIM(MID(A3,SEARCH(",",A3)+1,95)))
 
Upvote 0

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
It just looks to see if the penultimate character is a space.
But the formula deleted the M for Omar, does your formula look for second names with more than one letter as well?
 
Upvote 0
Upvote 1
Upvote 0
Upvote 0
You're welcome. Glad we could help. Thanks for the follow-up. :)
 
Upvote 1

Forum statistics

Threads
1,215,043
Messages
6,122,825
Members
449,096
Latest member
Erald

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