I have names in a column. I need to split just the last names from that column into another column.
The last name is delimited by a space from the right side.
Right(A1, Len(A1)-Find("(asterisk)",Substitute(A1, "(space)","(asterisk)",Len(A1)-Len(Substitute(A1,"(space)", "(no space)")))))
Try this. Hope it works.