Run Action Query Using Macro

How will you create a macro that can run action query?

Questions by Awahab595

Showing Answers 1 - 3 of 3 Answers

raghshobha

  • Sep 26th, 2010
 

Docmd.Docmd.OpenQuery "QueryName"

for action querys to avoid warning messages you can even try this

With DoCmd
     
.SetWarnings False
     
.OpenQuery <queryname>
End With 

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions