I have a list of names that I need to remove the first name if it exists. Not all of them will have it. My list may looks like this:
John Doe
Steven Smith
Johnson
I found this formula:
=MID(A2,FIND(" ",A2)+1,256)
The problem is, that if there is no first name (so no space), it will give me a #VALUE ! error.
Any ideas of what I can use to remove just the first names if it is there would be greatly appreciated.
John
John Doe
Steven Smith
Johnson
I found this formula:
=MID(A2,FIND(" ",A2)+1,256)
The problem is, that if there is no first name (so no space), it will give me a #VALUE ! error.
Any ideas of what I can use to remove just the first names if it is there would be greatly appreciated.
John