How2 set a shared workbook to always open a certain window size?

B

Bob W

Is there a way to force a shared workbook to always open in a smallish size,
window ie, maybe 6" square, for all users?

The idea is to use a hyperlink on the primary worksheet to display a lookup
table in a second worksheet (like a popup help window) without completely
blotting out the primary worksheet.
 
J

Joel

A worksheet open event macro can initialize your windows so they always gives
you the same view.

Private Sub Workbook_Open()
Application.WindowState = xlNormal
Application.Width = 522
Application.Height = 354
End Sub
 

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