I would really appreciate your advice in the following situation:
My database has only 2 tables (Departments: DeptID, DeptName) and (RecordManagEntry: RMNumber, Year, DeptID)
I have a form that has 2 boxes (one of which is a combo drop down that displays the department names to be selected), and the other is showing the next availabe box number to be added for the database for our facility. This form was created origionally for one Facility that has multiple departments.
Now, they need me to add different facilities with their departments for other regions, so the user can add box numbers for different facilities, so I added the table: (Facility: FacID, FacName), created the relationship for it 1:M with Department table, inserted couple of records, added another Combo box in the same Form that shows the FacilityNames in its drop list:
What I need the form to do:
When I select the facility from the drop down box, I need the 2nd combo box that shows all departments to display only the departments for that specific selected Facility.
it seems no matter what facility I select now, it shows me all the deptNames from the drop down, how can I relate those combo boxes to each other?