S
Steve C
I am building a database of employee information for our Accounting
department. They want to store information on existing employees and new
hires. In tblEmployees, existing employees are uniquely identified by an 8
character combination of their last and first names, i.e., SMITROBE for
Robert Smith, JONEMARY for Mary Jones, etc.
They want potential new hires to be initially entered and identified as
NEWHIR01, NEWHIR02, etc. for budgeting planning purposes (these identifiers
would be changed to the last & first name combination described above once
officially hired).
My challenge is that they do not want to reuse a NEWHIR number once already
used. If NEWHIR01 through NEWHIR08 had already been entered previously, they
want to be able to choose the next NEWHIR number (NEWHIR09) from a list.
While it's easy to override the NEWHIR number with the employees last/first
name once officially hired, I'm struggling with a way to make used NEWHIR
numbers unavailable to be used again.
Any ideas on how to solve this would be greatly appreciated!
department. They want to store information on existing employees and new
hires. In tblEmployees, existing employees are uniquely identified by an 8
character combination of their last and first names, i.e., SMITROBE for
Robert Smith, JONEMARY for Mary Jones, etc.
They want potential new hires to be initially entered and identified as
NEWHIR01, NEWHIR02, etc. for budgeting planning purposes (these identifiers
would be changed to the last & first name combination described above once
officially hired).
My challenge is that they do not want to reuse a NEWHIR number once already
used. If NEWHIR01 through NEWHIR08 had already been entered previously, they
want to be able to choose the next NEWHIR number (NEWHIR09) from a list.
While it's easy to override the NEWHIR number with the employees last/first
name once officially hired, I'm struggling with a way to make used NEWHIR
numbers unavailable to be used again.
Any ideas on how to solve this would be greatly appreciated!