A
Anthony Viscomi
Hi All:
I have multiple queries that I would like to run via VBA code; I know how to
use the DoCmd.OpenQuery "qry_Mktbl_Update_CCE_CF_UNITS"
DoCmd.OpenQuery "qry_Mktbl_Update_CCE_U3M_UNITS"
DoCmd.OpenQuery "qry_Mktbl_Update_CCE_U5M_UNITS"
Etc...
My question is:
Can I use a wildcard to run these queries? In other woulds all of the
queries that I want to run start with, qry_Mktbl and there are a lot of
them. Thus, maybe I could use something like this:
DoCmd.OpenQuery "qry_Mktbl_"*; which doesn't work.
Thanks in advance!
Anthony Viscomi
I have multiple queries that I would like to run via VBA code; I know how to
use the DoCmd.OpenQuery "qry_Mktbl_Update_CCE_CF_UNITS"
DoCmd.OpenQuery "qry_Mktbl_Update_CCE_U3M_UNITS"
DoCmd.OpenQuery "qry_Mktbl_Update_CCE_U5M_UNITS"
Etc...
My question is:
Can I use a wildcard to run these queries? In other woulds all of the
queries that I want to run start with, qry_Mktbl and there are a lot of
them. Thus, maybe I could use something like this:
DoCmd.OpenQuery "qry_Mktbl_"*; which doesn't work.
Thanks in advance!
Anthony Viscomi