Open worksheet at 70%

M

Malcolm

Thanks for the help but I am having trouble in locating
where to place the code.

The active window at the start of the macro is
sheet "Address Details", which then opens a new sheet
which becomes active. Where would I place the code in the
first sheet so that it changes the new sheets zoom size?

Thanks

Malcolm
 
D

Dave Peterson

Add it to your existing macro right after you select that other worksheet.

(does open a new sheet mean add a new sheet? If yes, then add the code right
after you add the worksheet.)

worksheets("sheet99").select
activewindow.zoom = 70
or
worksheets.add
activewindow.zoom = 70
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top