My database tracks employees as they take non-credit courses in my learning lab. Each employee has a unique Payroll ID number. The older employees have a 4-digit PID; the newer ones have a five-digit PID. I want to use that PID as part of a numbering scheme in a database. My plan is to append another digit to the beginning of the PID to indicate which level the student is in (sort of like freshman, sophomore, junior, senior). Here’s the plan:
For the sake of consistency, I want to make all PIDs into 5-digit numbers. Thus, 8146 becomes 08146. Then I want to add one more digit to the front of the PID to designate the training level. Now 108146 means that the employee/student is working on the first level of training; 208146 means the second level and so on. I see creating a table with fields for PID, LastName, FirstName, MI, and then fields for the four training levels. So I’ll see, e.g., 08146 – Smith – Leonard – C – 108146 – 208146…and so on.
What I haven’t figured out is how to do all that. Suggestions, anyone…? TIA.