View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips[_4_] Bob Phillips[_4_] is offline
external usenet poster
 
Posts: 834
Default Name Format Formula

Try

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

--

HTH

Bob

"sross002" wrote in message
...
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.