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...