Problem is making new entries in a bridge or join table.
Employees
EmployeeID
FirstName
Certifications
CertificationID
CertName
EmployeeCert (join table)
EmployeeID
CertificationID
- Each employee can have many Certifications. Each Certification can be held by many Employees. A many to many relationship, hence the join table.
- I have separate data entry forms for Employees and Certifications. I have a sub form on the Employees form that displays the certifications that the current Employee has. But, I have manually put entries in the bridge table.
- What control(s) are necessary to put new records in the bridge table? Please include the query to populate that control. Any references to web tutorials would be appreciated.
- My concept is to have a form without a datasource, a listbox of Employees, and a listbox of Certifications. The user selects an entry from each listbox (one Employee and one Certification), then presses a button to make the connection. I am not adverse to VBA code, but would prefer not to have to use it.
Employees
EmployeeID
FirstName
Certifications
CertificationID
CertName
EmployeeCert (join table)
EmployeeID
CertificationID
- Each employee can have many Certifications. Each Certification can be held by many Employees. A many to many relationship, hence the join table.
- I have separate data entry forms for Employees and Certifications. I have a sub form on the Employees form that displays the certifications that the current Employee has. But, I have manually put entries in the bridge table.
- What control(s) are necessary to put new records in the bridge table? Please include the query to populate that control. Any references to web tutorials would be appreciated.
- My concept is to have a form without a datasource, a listbox of Employees, and a listbox of Certifications. The user selects an entry from each listbox (one Employee and one Certification), then presses a button to make the connection. I am not adverse to VBA code, but would prefer not to have to use it.