• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Removing part of a name

OAhmed

New Member
Hi Chandoo,


I want to get rid of Title in a name, which is between First name and initial, something like this: Abrams, Coun K. I just want to get rid of "Coun" to get the result as Abrams, K.


Thanks in advance.


O Ahmed
 
Try:

Code:
=LEFT(A1,FIND(", ",A1)+1)&RIGHT(A1,LEN(A1)-FIND(" ",A1,FIND(" ",A1)+1))
 
Back
Top