excel_stuff
Member
Hi listers,
I want to include a box (or a cell) in my front sheet so the user can specify the zoom level for the entire workbook. I have come across the following macro which lets you zoom to a specified percentage but not exactly what I am looking for.
Sub SetZoom()Dim ws As Worksheet
ForEach ws In Worksheets
ws.Select
ActiveWindow.Zoom =85 //change as per your requirements
Next wsEndSub
I would appreciate your help.
Thank you!
ExcelStuff
I want to include a box (or a cell) in my front sheet so the user can specify the zoom level for the entire workbook. I have come across the following macro which lets you zoom to a specified percentage but not exactly what I am looking for.
Sub SetZoom()Dim ws As Worksheet
ForEach ws In Worksheets
ws.Select
ActiveWindow.Zoom =85 //change as per your requirements
Next wsEndSub
I would appreciate your help.
Thank you!
ExcelStuff