April 2006
Beginner
1114 pages
98h 16m
English
series.ErrorBars
Returns the ErrorBars collection for a series. Use the returned object to remove error bars from a series, as shown by the following code:
Sub RemoveErrorBars( )
Dim chrt As Chart, sr As Series
' Get a chart.
Set chrt = ActiveChart
' Get first series
Set sr = chrt.SeriesCollection(1)
' Remove the error bars added by AddErrorBars.
sr.ErrorBars.Delete
End SubRead now
Unlock full access