M Markus Mar 22, 2004 #1 How can I use vb to automatically set the view to zoom at 40 percent when a sheet is activated? Thanks
How can I use vb to automatically set the view to zoom at 40 percent when a sheet is activated? Thanks
B Bob Phillips Mar 22, 2004 #2 Markus, This is likely to make it unviewable, but here it is Sub Auto_Open() ActiveWindow.Zoom = 40 End Sub -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct)
Markus, This is likely to make it unviewable, but here it is Sub Auto_Open() ActiveWindow.Zoom = 40 End Sub -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct)
R Roger Whitehead Mar 22, 2004 #3 Copy the following code to the Activate event of the worksheet. ActiveWindow.Zoom = 40