peterbatah
New Member
- Joined
- Jul 17, 2017
- Messages
- 25
Hello all.
I have this bit of code running in my worksheet.
The only way that I can select multiple cells using the CTRL key is if I break the running VB code.
Any assistance would be greatly appreciated.
Thank you
Peter
I have this bit of code running in my worksheet.
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
'updateby Extendoffice 20160530
On Error GoTo LZoom
Dim xZoom As Long
xZoom = 100
If Target.Validation.Type = xlValidateList Then xZoom = 130
LZoom:
ActiveWindow.Zoom = xZoom
End Sub
The only way that I can select multiple cells using the CTRL key is if I break the running VB code.
Any assistance would be greatly appreciated.
Thank you
Peter