ShowDependents Method

Applies To

Range Object.

Description

Draws tracer arrows to the direct dependents of the range.

Syntax

object.ShowDependents(remove)

object

Required. The Range object. Must be a single cell.

remove

Optional. If True, removes one level of tracer arrows to direct dependents. If False or omitted, expands one level of tracer arrows.

See Also

ClearArrows Method, Dependents Property, ShowErrors Method, ShowPrecedents Method.

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