Excel Formula Help

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a list of names as lastname, firstname. I need a formula to make them
first initial (no period) lastname. Does anyone know of an Excel formula or
function that will do this?

Thanks
 
The following formula should do what you want:

=MID(A1,FIND(",",A1)+2,1)&" "&LEFT(A1,FIND(",",A1)-1)
 

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

Back
Top