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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Macro runs a Make-table query - How to answer "Yes" every time 1

Status
Not open for further replies.

kdowney

IS-IT--Management
Oct 9, 2002
8
0
0
US
I have a number of macros that run make-table queries and then display a report basedon those tables.

After the first step, which opens a query, Access prompts me that the existing table will be over-written, do I want to proceed.

How to I incorporate a step to answer "YES" to this question every time the macro is run?

Thanks for all help!
 
Use DoCmd.SetWarnings False in your code. before you run an update query. Remember to set it on again at the end.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top