A
aca
How can I make my macro to be executed when the user double-clicks on
the active cell of Excel?
Thanks for any help.
aca
the active cell of Excel?
Thanks for any help.
aca
Jim said:On the sheet tab you want to react to the double click, right click th
tab
and select veiw code. This will take you to the VBE. Paste this code i
and
you are off and running...
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cance
As
Boolean)
Cancel = True
MsgBox Target.Address
End Sub