Disable Doubleclick
In the BeforeDoubleClick event of the Worksheet:
If Not Intersect(Target, Range("A1:D4")) Is Nothing Then Cancel = True
--
Vasant
"Brandon" wrote in message
...
I am trying to disable the mouse doubleclick on certain
cells(range) of a spreadsheet. I know how to disable
doubleclicking for the entire spreadsheet using:
Application.EditDirectlyInCell = False
Is there a way apply this to a specific range only?
|