• 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.

Recompiling Names

b1urrc0ck

New Member
Hi isit possible for excel to find same name and change all the Doe John to John Doe? e.g. John Doe and Doe John.
 
Hi b1urrc0ck,


Welcome to the forums!


Or if you have a list in Col A you can use:


Code:
=TRIM(MID(A1,FIND(" ",A1)+1,100))& " "&LEFT(A1,LEN(A1)-FIND(" ",A1)+1)


Regards,
 
Back
Top