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...