Automatic Zoom

  • Thread starter Thread starter Markus
  • Start date Start date
M

Markus

How can I use vb to automatically set the view to zoom at
40 percent when a sheet is activated?

Thanks
 
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)
 
Copy the following code to the Activate event of the worksheet.

ActiveWindow.Zoom = 40
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top