I have researched and tried to back into a solution to no avail. Previously I had help here learning how to unconcatenate last and first name when name is all in one field, example "Smith Sr,John A"
The last name parse works well, it even keeps the suffix if they are present (e.g. "Smith Sr"):
LastName: Left([name],InStr([name],",")-1)
The first name parse works OK, but it keeps the middle initial or name if it is present (e.g. "John A":
FirstName: Mid([name],InStr([name],",")+1)
I want to parse the first name so that it excludes middle initial or middle name if present, and I need a new parse that will parse out middle initial/name if they exist, but if they don't, leave the field blank.
I have spent hours on this, nothing returns quite the exact result that I need. Sure hope someone can help.
The last name parse works well, it even keeps the suffix if they are present (e.g. "Smith Sr"):
LastName: Left([name],InStr([name],",")-1)
The first name parse works OK, but it keeps the middle initial or name if it is present (e.g. "John A":
FirstName: Mid([name],InStr([name],",")+1)
I want to parse the first name so that it excludes middle initial or middle name if present, and I need a new parse that will parse out middle initial/name if they exist, but if they don't, leave the field blank.
I have spent hours on this, nothing returns quite the exact result that I need. Sure hope someone can help.