Watches.Add method (Excel)
Adds a range that is tracked when the worksheet is recalculated.
expression.Add (Source)
expression A variable that represents a Watches object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Source | Required | Variant | The source for the range. |
A Watch object that represents the new range.
This example creates a summation formula in cell A3 and then adds this cell to the watch facility.
Sub AddWatch()
With Application
.Range("A1").Formula = 1
.Range("A2").Formula = 2
.Range("A3").Formula = "=Sum(A1:A2)"
.Range("A3").Select
.Watches.Add Source:=ActiveCell
End With
End Sub
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.