How do I automate/schedule an Access macro to run nightly?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a lengthy macro I would like to run every night at midnight so that it
will be done/updated when I come to the office in the morning. Is this
possible to automate?

Thanks
 
Use Windows Task Scheduler, or one of the many third-party scheduling
programs available today, to run the macro using a command line like
this...
"C:\PathToAccess\Msaccess.exe" "C:\PathToDB\MyDB.mdb" /x macroname
 
Back
Top