Include Property
True if the data in the specified row or column is included in the chart. Read/write Variant.
expression.Include
expression Required. An expression that returns one of the objects in the Applies To list.
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