Gregory said:
How do I get my reports to open at 100% zoom? All my users are complaining because they have to enlarge the reports all the time from 25% to 100% to see the report results.
The standard way to do this is to use this sequence:
DoCmd.OpenReport . . .
DoCmd.RunCommand acCmdZoom100
If you are not using a form to open the report, then I
**think** you can use the zoom feature in the report's
Activate. It seems to work even though it generates an
error message that you can supress this way:
On Error Resume Next
DoCmd.RunCommand acCmdZoom100