Running Multiple queries at the same time?

hockeyadc

Registered User.
Local time
Today, 01:16
Joined
Sep 6, 2011
Messages
20
Is this possible? I have about 8 queries I'd like to just run at one time. Perhaps with a macro?
 
Access is basically single threaded (excluding timers perhaps) so you can put 8 queries into a macro and it will run them one after another, but not at the same time, can't really think of a way to do that.
 
One after another is fine. Perhaps even better. Can you tell me how to accomplish this? Thanks
 
Create a new Macro and use the OpenQuery macro command, in the arguments area put in the name of your query, repeat the command as many times as necessary.
 

Users who are viewing this thread

Back
Top Bottom