ElvisSteel
Board Regular
- Joined
- Mar 23, 2009
- Messages
- 122
Hi,
I have a worksheet that is not responding to worksheet events as I expect. Code is as follows...
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("E4:P4")) Is Nothing Then
MsgBox "New Cell Selected"
End If
End Sub
I've check that EnableEvents is True, and tried the other options such as BeforeRightClick, Change etc, but none of them trigger the code.
Have I overlooked something obvious?
I've used this type of code on loads of other sheets and it works fine, so I assume I'm doing something basic wrong here
Thanks
Steve
I have a worksheet that is not responding to worksheet events as I expect. Code is as follows...
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("E4:P4")) Is Nothing Then
MsgBox "New Cell Selected"
End If
End Sub
I've check that EnableEvents is True, and tried the other options such as BeforeRightClick, Change etc, but none of them trigger the code.
Have I overlooked something obvious?
I've used this type of code on loads of other sheets and it works fine, so I assume I'm doing something basic wrong here
Thanks
Steve