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

Extract First Name and Middle Name from 2 or 3 part last name, first name

fvo2715

New Member
Hi;

I have a list of Name formatted as LAST, FIRST MIDDLE
Ex: (I able to find 1 word Last name to extract the first name and last name) but below:

DE LA FUENTE, OCHOA J. (How to extract First name: Ochoa and Middle Name: J.

or

Lopez Valenzuela, Mary Jan (how to extract First Name: Mary & Middle Name: Jan)

Please help with a formula without VBA.

Thank You
 
Try this formula solution without VBA..............

upload_2018-7-2_13-9-24.png

To extract First and Middle name,

In B2, copied across to C2 and all copied down :

=TRIM(MID(SUBSTITUTE(MID($A2,FIND(",",$A2)+1,99)," ",REPT(" ",50)),COLUMNS($A:A)*50,50))

Regards
Bosco
 

Attachments

  • ExtractFirstAndMiddleName.xlsx
    11.4 KB · Views: 6
Back
Top