F
floridagal
I have a list of names like this:
Smith, Pat
Brown, Clifford G
I can parse out the first name using the below syntax but
it gives me the middle initial when it exists:
First Name: IIf(IsNull([EMPLOYEE_ASSIGNMENTS]!
[SUPERVISOR_NAME]),'',Right(Trim([Supervisor Name]),Len
(Trim([Supervisor Name]))-InStr(1,[Supervisor Name]," ")))
How can I get rid of the Middle Initial when there is one?
TIA!
Smith, Pat
Brown, Clifford G
I can parse out the first name using the below syntax but
it gives me the middle initial when it exists:
First Name: IIf(IsNull([EMPLOYEE_ASSIGNMENTS]!
[SUPERVISOR_NAME]),'',Right(Trim([Supervisor Name]),Len
(Trim([Supervisor Name]))-InStr(1,[Supervisor Name]," ")))
How can I get rid of the Middle Initial when there is one?
TIA!