How can I remove Salutation

  • Thread starter Thread starter m_ravindran
  • Start date Start date
M

m_ravindran

Can anyone help me to remove Salutation and name to two differen
fields.
I have a list of names like this. Mr Ravindran, Mrs Ravindran M
Ravindran, Miss Ravindran etc. I want to have the Salutation in on
cell and the name in the other.

Thanks in advance.

M. Ravindra
 
Assuming your list in column A

In B1 put:

=LEFT(A1,FIND(" ",A1,1))

In C1 put:

=MID(A1,FIND(" ",A1,1),99)

copy both down as far as you have data in Column A.


Vaya con Dios,
Chuck, CABGx3
 
Back
Top