Hopefully someone can help. I have a column of cells (Column D) within a worksheet with all the users taken from Active Directory. The data within the cell is in the format
Lastname, Firstname Title
I would like to separate the title and move it to another cell. The formula
is fine for this however we have several people with double barrelled names in the format
Lastame Lastame, Firstname Title
Lastame Lastame Lastname, Firstname Title
How can I separate the title only with these different variations of names? After days of searching I haven’t been able to find one.
Any and all help is greatly appreciated.
Paddy
Lastname, Firstname Title
I would like to separate the title and move it to another cell. The formula
Code:
=RIGHT(A2,LEN(A2)-SEARCH(" ",A2,SEARCH(" ",A2,1)+1))
Lastame Lastame, Firstname Title
Lastame Lastame Lastname, Firstname Title
How can I separate the title only with these different variations of names? After days of searching I haven’t been able to find one.
Any and all help is greatly appreciated.
Paddy