View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
mudraker[_401_] mudraker[_401_] is offline
external usenet poster
 
Posts: 1
Default Visual Basic - active macro on cell click


Have a look at the Worksheet_BeforeDoubleClick event



Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cance
As Boolean)
Your code here
e.g.
test for target.cell.address
If address = A1
do something
end if

End Su

--
mudrake
-----------------------------------------------------------------------
mudraker's Profile: http://www.excelforum.com/member.php...nfo&userid=247
View this thread: http://www.excelforum.com/showthread.php?threadid=57363