I found a code to zoom a validation dropdown list and then after selection it goes back to 100%. Problem is it also moves off the screen. Is there a way to keep this centered and still zoom up and down? Thanks
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
ActiveWindow.Zoom = 100
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim R As Range
Application.EnableEvents = False
On Error Resume Next
Set R = Range("C:C").SpecialCells(xlCellTypeAllValidation)
On Error GoTo 0
If R Is Nothing Then
Application.EnableEvents = True
Exit Sub
End If
If Not Intersect(Target, R) Is Nothing Then
ActiveWindow.Zoom = 150
End If
Application.EnableEvents = True
End Sub