I\'d like to have a macro, called Macro1, for example, run every day at 9 AM. It works great on its own from the VB code editor in Access 2007 but I would like it to be able
You must create vbscript to run your macro and create a batch file to schedule your vbscript.
vbscript code, save this as schedule.vbs file
Dim accessApp
set accessApp = createObject("Access.Application")
accessApp.OpenCurrentDataBase("fullpath\msaccessdb")
accessApp.Run "Macroname",param1, param2,param3
accessApp.Quit
set accessApp = nothing
THEN create file.bat
@echo off
cscript schedule.vbs
and your ready to schedule it using the windows task scheduler http://www.thewindowsclub.com/how-to-schedule-batch-file-run-automatically-windows-7
hope this help :D