Cutomize the zoom to 80%

W

wuwu

Dear all

I have to open a lot of excel files one day, but the view size is not the
same. How can do that the view size will always change to 80% when I open
each file.
 
F

Frank Kabel

Hi
you have to put this code into the workbook_open event of these files.
AFAIK there's no other option to achieve this
 
D

Don Guillett

for each ws in worksheets
ws.select
activewindow.zoom=80
next

Further, you can set a print range for each sheet and use
activewindow.zoom=true.
 
Top