I am trying to use the beforedoubleclick event in a worksheet, but I cannot get the event to trigger. Any assistance would be greatly appreciated.
I am using a simple function just to see if the event is triggering. This function is in the code for the worksheet I am trying to use. SheetBeforeDoubleClick and BeforeRightClick events also do not trigger. I have tried protecting my worksheet to see if that helped, but to no avail.
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Excel.Range, Cancel As Boolean)
MsgBox "Test", vbCritical, "Test"
Cancel = True
End Sub
Again, any assistance is appreciated.
I am using a simple function just to see if the event is triggering. This function is in the code for the worksheet I am trying to use. SheetBeforeDoubleClick and BeforeRightClick events also do not trigger. I have tried protecting my worksheet to see if that helped, but to no avail.
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Excel.Range, Cancel As Boolean)
MsgBox "Test", vbCritical, "Test"
Cancel = True
End Sub
Again, any assistance is appreciated.