Include Property

Applies To

Range object.

Description

True if the data in the specified row or column is included in the chart. Read/write Boolean.

Example

This example causes the data in the second row on the datasheet to be excluded from the chart.

With myChart.Application.DataSheet
    .Rows(2).Include = False
End With