Hi,
I have 3 tables: Employees, Skills and EmployeeSkills.
Each employee has a set of 40 skills that are either "not trained", "in training" or "acquired". I want to create a form with employee name and the 40 skills with either combo boxes or check boxes to select one of the three variables for each skill. The way I am planning to do is the following:
An Employee table with employee names, a Skills table with skill names and an EmployeeSkill table with the 40 skills for each EmployeeID.
Each time a new employee is created, a code runs an append query to add the EmployeeID and a set of 40 skills in the EmployeeSkills table.
Does that make sense or is there a much easier way to create this?
I have 3 tables: Employees, Skills and EmployeeSkills.
Each employee has a set of 40 skills that are either "not trained", "in training" or "acquired". I want to create a form with employee name and the 40 skills with either combo boxes or check boxes to select one of the three variables for each skill. The way I am planning to do is the following:
An Employee table with employee names, a Skills table with skill names and an EmployeeSkill table with the 40 skills for each EmployeeID.
Each time a new employee is created, a code runs an append query to add the EmployeeID and a set of 40 skills in the EmployeeSkills table.
Does that make sense or is there a much easier way to create this?