chordringer
New Member
- Joined
- Apr 27, 2007
- Messages
- 48
Is there a way to run a macro that will set the Zoom level for all sheet to 75%?
Dim x As Long
Sub foo()
' Our WEB Site - www.excel-it.com
x = 10
Dim WS As Worksheet
For Each WS In Worksheets
WS.Activate
ActiveWindow.Zoom = x + (100 / mySizA)
x = x + mySizA
Next WS
End Sub
Function mySizA() As Integer
Dim a As Long
Dim vResult
a = Worksheets.Count
vResult = a
mySizA = vResult
End Function