Include Property

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

expression.Include

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