excel vba problem

  • Thread starter Thread starter hanks
  • Start date Start date
H

hanks

Hello,

I have a list of names in excel with including names and both names an
surnames in some columns,
can you help me to extract only surnames into the different cell?


A1=Adams
A2=B.Bryan
A3=M.Bridge
A4=Jane
I want to have B1=" ",B2="Bryan",B3="Bridge",B4=" "


Thanks so much in advance
 
please try this one
=IF(ISERROR(FIND(".",A1)),"",RIGHT(A1,LEN(A1)-FIND(".",A1)))
 

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