Thread: click event
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Otto Moehrbach Otto Moehrbach is offline
external usenet poster
 
Posts: 1,090
Default click event

Use the WorkSheet_SelectionChange event. Note that this procedure fires
only if a selection change is made. In other words, merely clicking on the
active cell will not do it. HTH Otto
"tjh" wrote in message
...
Hello,

I would like to run a procedure whenever a cell is clicked/selected on a
spreadsheet. The standard event procedures do not seem to have one of
these.
I would also like this procedure to run, even if another procedure is
currently running --- therefore stopping the first procedure and then
running
the click event procedure.

Thank you for your help.