A family of Microsoft relational database management systems designed for ease of use.
The export is the 2 initials plus the ID number as a single field.
The 4 digit ID number is their employee ID number and is unique to each person.
PID LastName FirstName MI EmployeeID Doe John A 1234 I want the Primary Key (PID field) to auto populate as JD1234.
If that is the case then I do NOT recommend you do that. Use the EmployeeID as a primary key. If you want to display an ID with the initials, then use the expression:
Left(Firstname,1) & LeftLastname,1) & EmployeeID
If you need to join the export to their Access record, create a query on the export with a calculated column:
EmpID: Right(PID,4)
You can then use that query and join it that way.