I'm trying to write a calculated column formula to return the Last Name from a column that currently has employee's full names. The problem that I am having, is that the full names are stored in a few different formats:
- Dan B. Ferland
- Jake Collen
- Bobby Ray Nion
Any suggestions?
Here is the psudo code that I think would work:
count chars to first space
find space in full name starting at char after first space
if error, just do simple formula to return letters after first space
if no error, return chars from right (all chars - second space char #)