Name Format Formula

S

sross002

I have a full name in A1 but I want it to read as: Full Last Name, First
Name Initial.

For example, I would like to convert John Appleseed (a1) to Appleseed, J

Thank You in advance.
 
P

Paul C

Use

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

This assumes only one space inbetween first and last name.
 
J

JLatham

Handles 1 or 2 spaces, so can deal with
John Appleseed or John X. Appleseed
both result in Appleseed, J

Thanks to Paul C for giving me the one-space solution to toss in with my
2-space solution.
 

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