Extracting Intials from a name in a cell?

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

Guest

Hi all,

Is there an easy way to extract JUST the initials of a name in a cell if the
name format is:

Cell A1 = Bob Smith

need Cell B1 = BS

Thanks

Brian
 
Thanks for the prompt response - works great

Peo Sjoblom said:
If thge name is like firstname space lastname
however with double names and initials and otyer attributes it becomes
complicated, but for your example


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


will do


Regards,

Peo Sjoblom
 

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