Automating Report(s)

  • Thread starter Charles L. Phillips
  • Start date
C

Charles L. Phillips

Hello,
How do I get a report or a group of reports to run at a certain time of day,
on a specific day of the month & print accordingly automatically???

Any ideas or code????
 
L

Larry Linson

Provided the database is open and running (e.g., not tied up with an
unresponded MsgBox or something), you can put a timer on a Form (which
doesn't have to be visible) and leave that form open, and check if the
proper time has come in the timer event, then run the reports with
DoCmd.OpenReport.

But, perhaps better, you could use an outside scheduling program to run a
copy of the database -- one that does nothing but run the desired reports.
That would save you some compute power.

Larry Linson
Microsoft Access MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top