I am trying to build a database to keep track of training topics completed by
people in my department. Our department has a set of 37 training topics. There
are 7 job classifications in the department. Each job classification has a group
of required training topics. Some of the training topics are required by more
than one job classification. I have the following tables:
TblJob
JobID
JobDescription
TblTopic
TopicID
Subject
TblRequiredJobT opic
RequiredJobTopi cID
JobID
TopicID
TblTrainingComp leted
TrainingComplet edID
EmployeeID
DateCompleted
RequiredJobTopi cID
I want to use a continuous form to add the records to TblTrainingComp leted. I'm
stuck on how to enter the RequiredJobTopi cID field. It seems to me that I need
two comboboxes, one to define JobID and the other to define TopicID, so as to
define RequiredJobTopi cID from the junction table, TblRequiredJobT opic. In a
continuous form they both need to be bound to hold their value and I can't
figure out how to implement them. I appreciate any help anyone can give me.
Marcy
people in my department. Our department has a set of 37 training topics. There
are 7 job classifications in the department. Each job classification has a group
of required training topics. Some of the training topics are required by more
than one job classification. I have the following tables:
TblJob
JobID
JobDescription
TblTopic
TopicID
Subject
TblRequiredJobT opic
RequiredJobTopi cID
JobID
TopicID
TblTrainingComp leted
TrainingComplet edID
EmployeeID
DateCompleted
RequiredJobTopi cID
I want to use a continuous form to add the records to TblTrainingComp leted. I'm
stuck on how to enter the RequiredJobTopi cID field. It seems to me that I need
two comboboxes, one to define JobID and the other to define TopicID, so as to
define RequiredJobTopi cID from the junction table, TblRequiredJobT opic. In a
continuous form they both need to be bound to hold their value and I can't
figure out how to implement them. I appreciate any help anyone can give me.
Marcy
Comment