I have several questions that all resolve around the above issue. I have a database that queries a SQL database, an IBM AS400 database, and an Access database. I have a form with four drop-down boxes, all pointing to the same table (tbl_AllSchools) and the same field (SchoolName). The table contains the names of all the schools in our district. Techs will submit repair tickets through this database, and I'd like for them to be able to select the schools they take care of (each tech has 1-4 schools) to limit the tickets they see to the ones at their schools.
PROBLEM 1: I want to make a button under the first drop-down that will make a table (tbl_MySchools) with one field (SchoolName).
PROBLEM 2: I want to make a button under the subsequent drop-downs that will append the SchoolName to tbl_MySchools.
PROBLEM 3: I want to be able to reset the tbl_MySchools to all schools by re-making the table called tbl_MySchools that populates with the info from tbl_All Schools in it's entirety.
The queries that populate the repair ticket forms and reports do so with queries containing the tbl_MySchools table. I'm thinking I probably need to use a module, but I'm uncertain how to do that, and to call it in the vba code window for that button. Thanks.