I am struggling to create a formula to remove an initial from a name field
ie - change Mr X Smith to Mr Smith
Can anyone help please ?
I am struggling to create a formula to remove an initial from a name field
ie - change Mr X Smith to Mr Smith
Can anyone help please ?
Hi,
Try
=LEFT(A1,FIND(" ",A1))&" "&RIGHT(A1,LEN(A1)-FIND(" ",A1,FIND(" ",A1)+1))
or this link might help
http://www.cpearson.com/excel/FirstLast.htm
VBA Noob
_________________________________________
![]()
![]()
Credo Elvem ipsum etian vivere
_________________________________________
A message for cross posters
Please remember to wrap code.
Forum Rules
Please add to your signature if you found this link helpful. Excel links !!!
Try using a temporary column B with formula( =count(A1) )where the number of characters is displayed A1 being the name ,
then in next column use formula =right(A1,b1-1)
col A col B col C
X smith =count(A1) =right(a1,b1-1)
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks