Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

running multiple queries

Status
Not open for further replies.

wshm

Programmer
Dec 7, 2006
62
US
is it possible to run multiple queries at once?

ie. DoCmd.OpenForm "frm_frmDeptBudget", , "qry_DeptactTxDetail_sum" And "qry_DeptBudTxDetail" And "qtest
 
Can you put them in line?

DoCmd.OpenForm "frm_frmDeptBudget"
DoCmd.OpenForm "qry_DeptactTxDetail_sum"
DoCmd.OpenForm "qry_DeptBudTxDetail"
DoCmd.OpenForm "qtest"
 
hm.. i just tried
DoCmd.OpenForm "frm_frmDeptBudget", , "qry_DeptactTxDetail_sum" & "qry_DeptBudTxDetail" & "qtest"

and i think it's working..
i'll let you know
 
Do you know the DoCmd.OpenQuery method ?

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top