ShowDependents Method [Excel 2003 VBA Language Reference]

Draws tracer arrows to the direct dependents of the range.

expression**.ShowDependents(Remove)**

expression Required. An expression that returns a Range object. Must be a single cell.

Remove   Optional Variant. True to remove one level of tracer arrows to direct dependents. False to expand one level of tracer arrows. The default value is False.

Example

This example draws tracer arrows to dependents of the active cell on Sheet1.

Worksheets("Sheet1").Activate
ActiveCell.ShowDependents

This example removes the tracer arrow for one level of dependents of the active cell on Sheet1.

Worksheets("Sheet1").Activate
ActiveCell.ShowDependents Remove:=True

Applies to | Range Collection

See Also | ClearArrows Method | Dependents Property | ShowErrors Method | ShowPrecedents Method