I do not believe you can change the defaults in the Zoom dialog but you could
assign macros to buttons.
Sub Zoom_65()
ActiveWindow.Zoom = 65
End Sub
Or a on button toggle-switch to go forth and back.
Sub Zoom_65()
If ActiveWindow.Zoom = 65 Then
ActiveWindow.Zoom = 85
Else: ActiveWindow.Zoom = 65
End If
End Sub
Gord Dibben Excel MVP
End Subntoro wrote:
I need to have the Pre Set Zoom sizes of 85% and 65% in replacement of the
75% and 50% Excel Zoom Out Defaults.
Is it Possible? Thanks
SUNAN
|