I want to set the view for a workbook at 85% for anyone that opens it. Is there a code for that?
R Rebel May 30, 2009 #1 I want to set the view for a workbook at 85% for anyone that opens it. Is there a code for that?
S smartin May 31, 2009 #2 Rebel said: I want to set the view for a workbook at 85% for anyone that opens it. Is there a code for that? Click to expand... Place this in the Workbook code: Private Sub Workbook_Open() ActiveWindow.Zoom = 85 End Sub Warn -- would be annoying to some users.
Rebel said: I want to set the view for a workbook at 85% for anyone that opens it. Is there a code for that? Click to expand... Place this in the Workbook code: Private Sub Workbook_Open() ActiveWindow.Zoom = 85 End Sub Warn -- would be annoying to some users.
R Rebel May 31, 2009 #3 thanks..... smartin said: Place this in the Workbook code: Private Sub Workbook_Open() ActiveWindow.Zoom = 85 End Sub Warn -- would be annoying to some users. Click to expand...
thanks..... smartin said: Place this in the Workbook code: Private Sub Workbook_Open() ActiveWindow.Zoom = 85 End Sub Warn -- would be annoying to some users. Click to expand...