Marc
Marc
maybe something like this in a code module
Option Explicit
Dim sheet As Worksheet
Sub Auto_Open()
For Each sheet In ThisWorkbook.Worksheets
sheet.Activate
ActiveWindow.Zoom = 200
Next
End Sub
--
Gary
"Marc" <mcnr(N_O-S_P_A_M)@mindspring.com> wrote in message
news:IBTYf.361$sq5.6@newsread2.news.atl.earthlink.net...
> Marc
>
>
Yes.
In Microsoft Visual Basic Editor, under Objects>ThisWorkbook, input the following code:
Private Sub Workbook_Open()
For Each ws In Worksheets
ws.select
ActiveWindow.Zoom = 100
Next
End Sub
Change the zoom to whatever zoom you want it to be. do not include the % symbol
Thanks I get tired of have to do each sheet manually.
Marc
"Marc" <mcnr(N_O-S_P_A_M)@mindspring.com> wrote in message
news:IBTYf.361$sq5.6@newsread2.news.atl.earthlink.net...
> Marc
>
>
Spoke to soon. I copied it and change the 100 to 75 and tried to run it and
I get a run time error '1004' "Select method of Worksheet class failed".
Marc
"dok112" <dok112.25t0g4_1144261911.7708@excelforum-nospam.com> wrote in
message news:dok112.25t0g4_1144261911.7708@excelforum-nospam.com...
>
> Yes.
>
> In Microsoft Visual Basic Editor, under Objects>ThisWorkbook, input the
> following code:
>
> Private Sub Workbook_Open()
> For Each ws In Worksheets
> ws.select
> ActiveWindow.Zoom = 100
> Next
> End Sub
>
> Change the zoom to whatever zoom you want it to be. do not include the
> % symbol
>
>
> --
> dok112
> ------------------------------------------------------------------------
> dok112's Profile:
http://www.excelforum.com/member.php...o&userid=10581
> View this thread: http://www.excelforum.com/showthread...hreadid=530168
>
You will get that error if you have put the code in the wrong spot, or if you are attempting to make the zoom too large. You can go from 10 to 400 percent. If you put that code in a regular module, you will get that error. It has to go into the ThisWorkbook object so it knows to do it when it opens.
Originally Posted by Marc
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks