Current Macro:
Private Sub Worksheet_SelectionChange
If Target.Address = "$C$11" Then
ActiveWindow.Zoom = 120
Else
ActiveWindow.Zoom = 55
End If
End Sub
Desired Macro:
Click on cell C11, zoom in to 120, else, zoom should be whatever the sheet is set to. I use 55, but somebody else might use 75, and I don't want my macro to stop that.
Ideas?