surfbum3000
Technical User
I need to seperate the name field. I only need help with the middle name which is sometimes a name and sometimes an initial. [LASTNAME, FIRSTNAME MIDDLENAME] or [LASTNAME, FIRSTNAME MIDDLEINITIAL]
LastNAME: Left([SORT_NAME],InStr([SORT_NAME],", ")-1); Works fine
FirstNAME: Mid([SORT_NAME],InStr([SORT_NAME]," ")+1) ; Works fine.
MiddleName or MiddleInitial: ?? Would it be the Right function?
MiddleName: Right([SORT_NAME],InStr([SORT_NAME],",")+1); Does Not Work
LastNAME: Left([SORT_NAME],InStr([SORT_NAME],", ")-1); Works fine
FirstNAME: Mid([SORT_NAME],InStr([SORT_NAME]," ")+1) ; Works fine.
MiddleName or MiddleInitial: ?? Would it be the Right function?
MiddleName: Right([SORT_NAME],InStr([SORT_NAME],",")+1); Does Not Work