What I need to do is to enter 25 Technicians who has been trained on the same Test Method into the same table all at once. I have created a form named “frmTrainingRecords” based on a table called “tblTrainingRecords”to enter the data. The table “tblTrainingRecords” consists of the following fields:
EmployeeID – This is a lookup field named “cboEmployeeID” coming from tblEmployees
TestMethodID – This is a lookup field named “cboTestMethod” coming from qryTestMethods
TrainerID – This is a look up field named “cboEmployeeID” coming from tblEmployees
TrainingDate - This is a text box where I enter the date of training
What I would like to do is to select multi employees from the combo box “EmployeeID” then select the test method that each employee has been trained on from combo box “TestMethodID”, then select the trainer from combo box TrainerID and finally enter the date of training.
Once all of the data has been selected or entered, add the records to the table “tblTrainingRecords" all at once. The total number of records added to the table would be the number of technicians that I selected.
EmployeeID – This is a lookup field named “cboEmployeeID” coming from tblEmployees
TestMethodID – This is a lookup field named “cboTestMethod” coming from qryTestMethods
TrainerID – This is a look up field named “cboEmployeeID” coming from tblEmployees
TrainingDate - This is a text box where I enter the date of training
What I would like to do is to select multi employees from the combo box “EmployeeID” then select the test method that each employee has been trained on from combo box “TestMethodID”, then select the trainer from combo box TrainerID and finally enter the date of training.
Once all of the data has been selected or entered, add the records to the table “tblTrainingRecords" all at once. The total number of records added to the table would be the number of technicians that I selected.