Eliminate Prompts

G

Guest

How do I eliminate the prompts if I am running a series of queries? Prompts
such as "Would you like to append table?" Yes/No

Thanks in advance
 
G

Guest

How are you running the queries, VBA or Macro?

In VBA:
DoCmd.SetWarnings False 'turn warnings off
'Run queries
DoCmd.SetWarnings True ' turn warnings on

Always turn them back on when you are done!

Steve
 
G

Guest

Perfect!

SteveM said:
How are you running the queries, VBA or Macro?

In VBA:
DoCmd.SetWarnings False 'turn warnings off
'Run queries
DoCmd.SetWarnings True ' turn warnings on

Always turn them back on when you are done!

Steve
 

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