Auto Email of report.

  • Thread starter Thread starter Antonio
  • Start date Start date
A

Antonio

I have a report that I would like e-mailed to 3 different
people at 2 PM each and every day. Is it possible to
create code/macro that will automatically do this?

TIA
 
1. Make a macro to email the reports, using 3 SendObject
macro actions.
2. Use Windows Task Scheduler, or some other third-party
scheduling software, to run a command line, along these lines:
"C:\PathToAccess\Msaccess.exe" "C:\PathToDB\MyDB.mdb" /x
macroname
 
Back
Top