How to run multiple queries

P

Pinacle

Could someone explain or post material on how to run multiple queries at same
time using macros.
I am in need to run 12 queries in whihc one query should trigger another
query.

Thanks in advance.
 
D

Dorian

You cannot run them at the same time.
Do you mean run them consecutively (one after another)? If so, simply list
them one after another in the macro.
If you mean one query uses another query's output as its input, you only
have to run the last query in the sequence, Access will take care of running
the queries needed by that one. E.g. if you have
Query1: select from Table...
Query2: select from Query1...
Query3: select from Query2...
you only need to run Query3.
-- Dorian
"Give someone a fish and they eat for a day; teach someone to fish and they
eat for a lifetime".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top