vote up 3 vote down star

How can I automatically execute an Excel macro each time a value in a particular cell changes?

Right now, my working code is:

Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Intersect(Target, Range("H5")) Is Nothing Then Macro
End Sub

where "H5" is the particular cell being monitored and Macro is the name of the macro.

Is there a better way?

flag

5 Answers

vote up 5 vote down check

Your code looks pretty good.

Be careful, however, for your call to Range("H5") is a shortcut command to Application.Range("H5"), which is equivalent to Application.ActiveSheet.Range("H5"). This could be fine, if the only changes are user-changes -- which is the most typical -- but it is possible for the worksheet's cell values to change when it is not the active sheet via programmatic changes, e.g. VBA.

With this in mind, I would utilize Target.Worksheet.Range("H5"):

Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Intersect(Target, Target.Worksheet.Range("H5")) Is Nothing Then Macro
End Sub

Or you can use Me.Range("H5"), if the event handler is on the code page for the worksheet in question (it usually is):

Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Intersect(Target, Me.Range("H5")) Is Nothing Then Macro
End Sub

Hope this helps...

link|flag
Thanks, that helps a lot. I suspected my approach was rather fragile. – namin Jan 6 '09 at 4:37
vote up 0 vote down

what to do if the macro should work if i click anywhere in column A

link|flag
vote up 2 vote down

I prefer this way, not using a cell but a range

    Dim cell_to_test As Range, cells_changed As Range

    Set cells_changed = Target(1, 1)
    Set cell_to_test = Range( RANGE_OF_CELLS_TO_DETECT )

    If Not Intersect(cells_changed, cell_to_test) Is Nothing Then 
       Macro
    End If
link|flag
vote up 0 vote down

There is a previous thread with related information: http://stackoverflow.com/questions/295165/how-determine-new-previous-cell-value-on-sheetchange-event-in-excel#295552

link|flag
vote up 4 vote down

Handle the Worksheet_Change event or the Workbook_SheetChange event.

The event handlers take an argument "Target As Range", so you can check if the range that's changing includes the cell you're interested in.

link|flag
Thanks, it works. I check the range with, say, Target.Address = Range("H5").Address. Is there an easier way? – namin Jan 3 '09 at 21:33
An alternative: Not (Intersect(Target, Range("H5")) Is Nothing) . Is this how you would do it? – namin Jan 3 '09 at 21:38
The first comment (Target.Address = Range("H5").Address) wouldn't work if your cell was only part of the changed range. The second comment still suffers the problems described by Mike Rosenblum. – Ant Apr 27 at 10:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.