Hello,
Here is a tough one.
I want to be able to do the following:
When Double-Clicking ANY Cell in COLUMN A only, a Macro executes.
Hello,
Here is a tough one.
I want to be able to do the following:
When Double-Clicking ANY Cell in COLUMN A only, a Macro executes.
Thank You,
EnigmaMatter
You could put this in the code module for the sheet in question.
![]()
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) If Target.Column = 1 Then Cancel = True: Call myMacro End Sub
_
...How to Cross-post politely...
..Wrap code by selecting the code and clicking the # or read this. Thank you.
Works perfectly.
Thank you!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks