Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is it possible to set a Zoom level when opening a workbook, but the user on
a network? How can i code it if able? -- Regards Corey |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
this may work:
Private Sub Worksheet_Activate() If UCase(Environ("UserName")) = "COREY" Then ' put the login name here ActiveWindow.Zoom = 85 Else ActiveWindow.Zoom = 100 End If End Sub -- Gary "Corey" wrote in message ... Is it possible to set a Zoom level when opening a workbook, but the user on a network? How can i code it if able? -- Regards Corey |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Setting the zoom size of a new window from 100% to 75% | Excel Discussion (Misc queries) | |||
Setting Default Zoom | Excel Discussion (Misc queries) | |||
setting of screen zoom in excel | Excel Discussion (Misc queries) | |||
Setting zoom of a worksheet in macro | Excel Programming | |||
Value of Zoom print setting | Excel Programming |