Zoom

ksebring

Board Regular
Joined
Jun 29, 2016
Messages
54
Is there a possible way to open a sheet from a dashboard to a certain size. For Example is someone changes the zoom level and saves it. when it it reopened can it go to 115% automatically.

Hope this makes sense. I want all the sheets on the workbook default to 115% zoom

thanks
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Try using this Vba script:
This is an auto sheet event script
Your Workbook must be Macro enabled
To install this code:
Right-click on any sheet tab
Select View Code from the pop-up context menu
In the upper left corner of the window double click on "ThisWorkBook"

Paste this code in the VBA edit window

Now anytime you activate a sheet the window will zoom to 115%

Code:
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
ActiveWindow.Zoom = 115
End Sub
 
Upvote 0
workbook open event maybe?

Code:
Private Sub Workbook_Open()
Dim sh As Worksheet
For Each sh In Worksheets
sh.Select
ActiveWindow.Zoom = 115
Next
End Sub
 
Upvote 0
It's been more then 12 Hrs. now since you asked this question and you have not checked back in. So I assume your happy with our answers or you found a answer some place else. Take care.
 
Upvote 0

Forum statistics

Threads
1,214,873
Messages
6,122,029
Members
449,061
Latest member
TheRealJoaquin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top