Zoom level

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to know if it is possible to open a workshhet alway to the same
same zoom level (i.e 94%) no matter if i am closing it to a different one
(i.e 105%)
 
In the worksheet module that you want to revert to 94% you can place the
following code in the worksheets activate event:

Private Sub Worksheet_Activate()

ActiveWindow.Zoom = 94

End Sub
 

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