R
Ryan
I have a form, frmParameterForm, that has 10 checkboxes on it, chk1-chk10. I
also have 10 queries, qry1-qry10, that are corespond with the same #
checkbox. I also have a button, btnRunUnionQuery, that I want to use to run
a union query. The union query would be determined buy which checkboxes were
checked. For example, if chk1, chk3 and chk8 were checked, the a query like
this wouild be run.
Select * From qry1
UNION ALL
Select * From qry3
UNION ALL
Select * From qry8
Basicaly, I need the checkbox's that are checked to build a simple union
query using the corresponding numberd query when the button is clicked.
Thank you in advance for any help provided.
also have 10 queries, qry1-qry10, that are corespond with the same #
checkbox. I also have a button, btnRunUnionQuery, that I want to use to run
a union query. The union query would be determined buy which checkboxes were
checked. For example, if chk1, chk3 and chk8 were checked, the a query like
this wouild be run.
Select * From qry1
UNION ALL
Select * From qry3
UNION ALL
Select * From qry8
Basicaly, I need the checkbox's that are checked to build a simple union
query using the corresponding numberd query when the button is clicked.
Thank you in advance for any help provided.