ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   setting of screen zoom in excel (https://www.excelbanter.com/excel-discussion-misc-queries/45058-setting-screen-zoom-excel.html)

Sunantoro

setting of screen zoom in excel
 
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

Gord Dibben

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




All times are GMT +1. The time now is 07:44 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com