• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Cell change and event trigger from worksheet calculate

Hi Neilsinc

Welcome to the forum..

Trigger an event.. when cell value changes by some external reference.. you have to use.. CALCULATE event..
What you are already doing..

Just add the reference.. with the desired Certain Value.. something like this..

Code:
Private Sub Worksheet_Calculate()
    If [a1] = 2 Then
        MsgBox "Is this what you are looking for!!!"
    End If
End Sub
 

Attachments

Back
Top