Hi, I want to run two queries, one to delete, the other to apprend.
If I call them qryAppendX and qyrDeleteX.
How can I run them using the code?
Can I simply write:
Thanks
If I call them qryAppendX and qyrDeleteX.
How can I run them using the code?
Can I simply write:
Code:
DoCmd.OpenQuery "qyrDeleteX"
...
DoCmd.OpenQuery "qryAppendX"
...
Thanks