View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
CAPTGNVR[_2_] CAPTGNVR[_2_] is offline
external usenet poster
 
Posts: 87
Default VB CODE for double click?

YES MARK--another BINGO.
your code works fine as I want and todays job is a good satisfaction of
learning a lot.

thank you and brgds/captgnvr

"Mark Ivey" wrote:

See if this will work....



Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)

If Selection.Column = 1 Then
insert_tow ' call your other macro
End If

End Sub


Mark Ivey



"CAPTGNVR" wrote in message
...
DEAR ALL

Can someone suggest me a VB code to be placed in sheet event
BeforeDoubleClick so that any cell I double click in colum A, it calls for
macro 'insert_tow'.

If i get this code, I am done for the day as the program is complete with
this.

Pls help.

brgds/captgnvr