changing name order

L

Liz

How do I change the name order in a mailing list so that the first name is
first and the last name is last? Currently, cell contains last name first
followed by a comma and the first name(s).
Thanks,
Liz
 
R

Ragdyer

With mailing list in Column A, try this in B:

=RIGHT(A1,LEN(A1)-FIND(",",A1))&" "&LEFT(A1,FIND(",",A1)-1)

And drag down to copy, as needed.

This should display the names in the order that you requested.
However, the cells which display the names actually contain the formulas.

If you wish to remove the formulas, and leave only the name data behind,
select the column of formulas,and right click and choose "Copy".
Then, right click again, and choose "PasteSpacial", then click on "Values",
then <OK>.
 

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