How do I change the default for print preview from fit to 100%?

T

TanTan

When I go into print preview I always have to change the view from fit to
100%. I would like it if it would always show it at 100% rather than fit.
 
F

fredg

When I go into print preview I always have to change the view from fit to
100%. I would like it if it would always show it at 100% rather than fit.

Open the report from an event on a form using code:

DoCmd.OpenReport "ReportName", acViewPreview
DoCmd.RunCommand acCmdZoom100
 
Top