Our display names come in as either First Name Last Name or First Name Middle Initial Last Name. I am not in a position to change this, I just need to work with it.
Examples
Kermit Frog
Kermit T Frog
For our forms we need to split it out to
Last Name: Frog
First Name: Kermit or Kermit T (Middle initial stays with the first name)
The formulas I currently have works fine when there is no middle initial but when it exists I get back
Last Name: T Frog
First Name: Kermit
The formulas I am using now (Sting_To_Manipulate = {/_currentuser_display} )
Last Name: =RIGHT(Sting_To_Manipulate, LEN(Sting_To_Manipulate) - FIND(" ",Sting_To_Manipulate,1))
First Name: =LEFT(Sting_To_Manipulate, FIND(" ",Sting_To_Manipulate,1))
I have been fighting with this for a couple hours and thought I would see if someone has already solved this issue on forms.
EDIT: sometimes Middle Name is not just an initial it can be the actual middle name.