DataSheet Property

Microsoft Graph Visual Basic

Returns the DataSheet object. Read-only.

Example

This example sets the value of cell A1 on the datasheet to 3.14159.

With myChart.Application
    .DataSheet.Range("A1").Value = 3.14159
End With