Applies To
ChartArea Object, Range Object.
Description
Clears the formulas from the range. Clears the data from a chart but leaves the formatting.
Syntax
object.ClearContents
object
Required. The Chart or Range object.
Example
This example clears the formulas from cells A1:G37 on Sheet1 but leaves the formatting intact.
Worksheets("Sheet1").Range("A1:G37").ClearContents
This example clears the chart data from Chart1 but leaves the formatting intact.
Charts("Chart1").ChartArea.ClearContents