Change Zoom Default Report Setting

S

Sarah

anWhen previewing a report in Microsoft Access 2000 or 2003, how can I change
the default zoom setting from Fit to something else like 150%?

Thanks,

Sarah
 
T

tina

if you're opening the report with code running on a form (such as from a
command button), then add the following code immediately after the
OpenReport action, as

DoCmd.RunCommand acCmdZoom150

hth
 
O

Ofer

Try seting the zoom after openning the report

Docmd.OpenReport "ReportName"
DoCmd.RunCommand acCmdZoom150
 
Top