I am looking for some help in parsing a string field which contains data as follows:
LName, FName MName
I need to show the Last, First and Middle Initial in seperate fields. I successfully use the Split function to parse the LName and FName into separate fields but I am having trouble parsing the MName. The Split function apparently does not work for this because not all records show a middle initial. Any idea how I can parse the MName if a record contains one?
Thanks!
LName, FName MName
I need to show the Last, First and Middle Initial in seperate fields. I successfully use the Split function to parse the LName and FName into separate fields but I am having trouble parsing the MName. The Split function apparently does not work for this because not all records show a middle initial. Any idea how I can parse the MName if a record contains one?
Thanks!