Another picky question that has me flummoxed. I can get my head around cascading combo boxes, but this one has got me.
In the header of my form frmStaff i would like to place two combo boxes to filter the records shown. Records for this form come from a query Q_StaffNOTExcluded
The first combo box needs to select records for a certain location. This data is the Location field, again through the query. The second combo box lists the staff names StaffName.
I would like to be able to select a location and the records be filtered to that location. I would then like to be able to select a name from the second combo box (which only shows staff from that location). If it matters, the PK for each of these tables (where staff details are stored) and Locations are StaffID and LocationID and the tables are tblStaff and tblLocation. Both have correctly linked relationships.
In the header of my form frmStaff i would like to place two combo boxes to filter the records shown. Records for this form come from a query Q_StaffNOTExcluded
The first combo box needs to select records for a certain location. This data is the Location field, again through the query. The second combo box lists the staff names StaffName.
I would like to be able to select a location and the records be filtered to that location. I would then like to be able to select a name from the second combo box (which only shows staff from that location). If it matters, the PK for each of these tables (where staff details are stored) and Locations are StaffID and LocationID and the tables are tblStaff and tblLocation. Both have correctly linked relationships.