View Single Post
  #3   Report Post  
dominicb
 
Posts: n/a
Default


Good afternoon Thw

A cell cannot kick off a macro, but you could use an event procedure to
do something when the cell changes - paste this code into your worksheet
event pane and replace my msgbox with your code. And remember that my
code is checking for the value of cell A1 being false - your post
doesn't state which cell you want to watch.

Private Sub Worksheet_Calculate()
If Range("A1") = True Then
MsgBox "Cell A1 is true."
End If
End Sub

HTH

DominicB


--
dominicb
------------------------------------------------------------------------
dominicb's Profile: http://www.excelforum.com/member.php...o&userid=18932
View this thread: http://www.excelforum.com/showthread...hreadid=380107