report size

  • Thread starter Thread starter Joe
  • Start date Start date
There's no way to set up a report to open with a default of any specific
zoom level other than Access' default. However, you can manage it pretty
easily by simply placing a line of code after the code you run to preview
the report (or macro you run.) As in:

Docmd.OpenReport "MyReport", acViewPreview
Docmd.RunCommand acCmdZoom75
 
Back
Top