Macro for append query

dcollard23

Registered User.
Local time
Today, 00:02
Joined
Jun 15, 2009
Messages
87
Hi, how do I go about creating a macro that will run an append query when the database is logged into or when a form is loaded? (If there is a better more efficient way to do this besides a macro please let me know i.e. SQL) Thanks for your assistance in advance.
Elaine
 
you can add this syntax at Form_Load()
DoCmd.RunMacro "YourMacro"
 
Thanks I will try it.
 
Or you could skip the macro in between and just use (air code):
Code:
DoCmd.RunQuery "YourAppendQuery"
 

Users who are viewing this thread

Back
Top Bottom