JerrodConaway
Registered User.
- Local time
- Today, 02:54
- Joined
- Feb 15, 2007
- Messages
- 11
I have created a form with the following combo boxes: Senator Name, Committee, SubCommittee, and issue. Within this form the data displayed by the SubCommittee combo box is predicated by what is entered in the Committee box by using the following formula:
SELECT SenateSubcommittee.SSC_Name, SenateMainCommittee.SMC_Name FROM SenateSubcommittee INNER JOIN SenateMainCommittee ON SenateSubcommittee.SSC_SMC_Abbreviation=SenateMainCommittee.SMC_Abbreviation WHERE (((SenateMainCommittee.SMC_Name)=Forms!Search!cmbCommittees1));
Unfortunately, if I mistakenly select one Committee and then change it to another Committee, the Subcommittee will only display results from the first committee I selected. For example, if I mistakenly select the Energy and Natural Resources Committee, but then change it to Appropriations, the subcommittee will only display the subcommittees related with Energy and Natural Resources. The only way to correct this is to close and reopen the form.
Any suggestions?
SELECT SenateSubcommittee.SSC_Name, SenateMainCommittee.SMC_Name FROM SenateSubcommittee INNER JOIN SenateMainCommittee ON SenateSubcommittee.SSC_SMC_Abbreviation=SenateMainCommittee.SMC_Abbreviation WHERE (((SenateMainCommittee.SMC_Name)=Forms!Search!cmbCommittees1));
Unfortunately, if I mistakenly select one Committee and then change it to another Committee, the Subcommittee will only display results from the first committee I selected. For example, if I mistakenly select the Energy and Natural Resources Committee, but then change it to Appropriations, the subcommittee will only display the subcommittees related with Energy and Natural Resources. The only way to correct this is to close and reopen the form.
Any suggestions?