M
mohd21uk via AccessMonster.com
I am trying to split a field called UserName into two seperate fields. The
field contains records in the following format Doe, John Where Doe is the
surname and John is the First Name. I would like to create two new fields in
Table called Surname and FirstName in the employee table with Firstname would
be generated using the following expression:
Orignial Entry in [Names]: "Doe, John"
Returned by Expression: John
Expression: Expr: Right(Trim([Names]),Len(Trim([Names]))-InStr(1, _
[Names]," "))
How can I edit this expression so that it creates the field First Name in the
employee table.
Many thanks in advance
field contains records in the following format Doe, John Where Doe is the
surname and John is the First Name. I would like to create two new fields in
Table called Surname and FirstName in the employee table with Firstname would
be generated using the following expression:
Orignial Entry in [Names]: "Doe, John"
Returned by Expression: John
Expression: Expr: Right(Trim([Names]),Len(Trim([Names]))-InStr(1, _
[Names]," "))
How can I edit this expression so that it creates the field First Name in the
employee table.
Many thanks in advance