Two Make Table Queries

  • Thread starter Thread starter Allison
  • Start date Start date
A

Allison

I have two make table queries that I'm trying to
autoexecu by macro on a daily basis.

As instructed I have

Set Warning - False
Open Query (qryIMPACTII)
Set Warning - True
Run Command Exit

Is there a way to run both query at the same time? or Run
qryIMPACTII first and then run qryNONCOMCURRENT second.
If so how should I change the above instructions.
 
Hi again Allison,

SetWarnings - False
OpenQuery (qryIMPACTII)
OpenQuery (qryNONCOMCURRENT)
SetWarnings - True
RunCommand Exit

HTH,
Nikos
 
Back
Top