Event Handling

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
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
The code is correct:
Code:
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 Sub

1) Make sure it is in the SHEET module, not a regular module
2) Save your workbook as a macro-enabled workbook
3) Close the file and close Excel, reopen

It works for me.
 
Upvote 0

Forum statistics

Threads
1,216,146
Messages
6,129,134
Members
449,488
Latest member
qh017

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top