Hello all
I found the following macro online which I put under Workbook_Open.
It works and does what I need it to do which is to (virtually) "lock" the zoom to 70% in the workbook.
But it means there will always be a macro running in the background.
WIll it affect the workbook in some way? Slow it down or other effect I can't think of?
If not, is there another way to achieve this?
Thank you all
Sub LockZoomInExcel()
Do
If ActiveWindow.Zoom <> 70 Then
ActiveWindow.Zoom = 70
End If
DoEvents
Loop While True
End Sub
I found the following macro online which I put under Workbook_Open.
It works and does what I need it to do which is to (virtually) "lock" the zoom to 70% in the workbook.
But it means there will always be a macro running in the background.
WIll it affect the workbook in some way? Slow it down or other effect I can't think of?
If not, is there another way to achieve this?
Thank you all
Sub LockZoomInExcel()
Do
If ActiveWindow.Zoom <> 70 Then
ActiveWindow.Zoom = 70
End If
DoEvents
Loop While True
End Sub