Working with first and last names

D

David Bateman

I have the first and last names in one cell and would like to extract them
into a format that I can sort such as this "lastname, firstname". Is there a
way to do this?
 
B

Bob Phillips

Data>Text To Columns with a space delimiter

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
G

Guest

Hi,

While the delimited option suggested by Bob is the best way to accomplish
this, a formula solution (Ctrl+Shift+Enter) is:

The formula assumed that the nameis in cell A16 (For e.g. Ashish Mathur)

MID(A16,MATCH(TRUE,EXACT(MID(A16,ROW($2:$13),1),PROPER(MID(A16,ROW($2:$13),1))),0)+2,255)&",
"&MID(A16,MATCH(TRUE,EXACT(MID(A16,ROW($1:$13),1),PROPER(MID(A16,ROW($1:$13),1))),0),MATCH(TRUE,EXACT(MID(A16,ROW($2:$13),1),PROPER(MID(A16,ROW($2:$13),1))),0))

Regards,
 
R

Ron Rosenfeld

I have the first and last names in one cell and would like to extract them
into a format that I can sort such as this "lastname, firstname". Is there a
way to do this?

Assuming you have no titles or suffixes, you could extract them in the format
you specify in various ways, some of which have already been posted.

You could also download and install Longre's free morefunc.xll add-in from
http://xcell05.free.fr/

Then use the formula:

=REGEX.MID(A1,"\w+",-1)&", "&REGEX.MID(A1,".*(?=\s\w+\W*$)")


--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top