Hello...
I am very new to Access VBA, VERY NEW. I do well with Excel so I have a little background, but Access is a different monster!
I have 15-20 queries that I would like to auto run with a press of a button.
I have (just a partial testing code):
First... is this right?
Second, I would like to create an easy end user button to run the module... is that possible in Access?
Thanks!
I am very new to Access VBA, VERY NEW. I do well with Excel so I have a little background, but Access is a different monster!
I have 15-20 queries that I would like to auto run with a press of a button.
I have (just a partial testing code):
Code:
Sub Run_Queries()
DoCmd.OpenQuery "01_PIF Counts"
DoCmd.Save acQuery, "01_PIF Counts"
DoCmd.Close acQuery, "01_PIF Counts"
End Sub
First... is this right?
Second, I would like to create an easy end user button to run the module... is that possible in Access?
Thanks!