Nothingness
New member
- Local time
- Today, 12:31
- Joined
- Feb 7, 2007
- Messages
- 3
Hello,
I've searched and read quite a few forum posts on how to append one query to another. I originally had a macro that I created which would open the Make Table Query and then open the Append Queries. I want to convert this to VBA and make it so I do not get those execute pop ups telling me how many rows were added. Any help would be greatly appreciated.
Below is the code that was created when I clicked the "Covernt Macros to Visual Basic" button:
Function Appending_Macro()
On Error GoTo Appending_Macro_Err
DoCmd.OpenQuery "200609 Append", acViewNormal, acEdit
DoCmd.OpenQuery "200610 Append", acViewNormal, acEdit
Appending_Macro_Exit:
Exit Function
Thank you again.
I've searched and read quite a few forum posts on how to append one query to another. I originally had a macro that I created which would open the Make Table Query and then open the Append Queries. I want to convert this to VBA and make it so I do not get those execute pop ups telling me how many rows were added. Any help would be greatly appreciated.
Below is the code that was created when I clicked the "Covernt Macros to Visual Basic" button:
Function Appending_Macro()
On Error GoTo Appending_Macro_Err
DoCmd.OpenQuery "200609 Append", acViewNormal, acEdit
DoCmd.OpenQuery "200610 Append", acViewNormal, acEdit
Appending_Macro_Exit:
Exit Function
Thank you again.