K
Ken
I keep getting an error with the following code:
Dim mySrs As Series
For Each mySrs In oChartObj.Chart.SeriesCollection
Debug.Print mySrs.PlotOrder, mySrs.Name, mySrs.Formula
If (mySrs.Name = SeriesStr) Then
Debug.Print "Found "; SeriesStr
End If
Next
I get a "Unable to get the PlotOrder property of the Series Class"
I am trying to update the series range values. I have other functions that
work correctly on other charts. I checked the chart to very the name of the
object is in the chart.
Any help would be great...
I really would like to be able to generate the charts on the fly but there
is so much formatting that it makes it impractical.
Thanks.
Dim mySrs As Series
For Each mySrs In oChartObj.Chart.SeriesCollection
Debug.Print mySrs.PlotOrder, mySrs.Name, mySrs.Formula
If (mySrs.Name = SeriesStr) Then
Debug.Print "Found "; SeriesStr
End If
Next
I get a "Unable to get the PlotOrder property of the Series Class"
I am trying to update the series range values. I have other functions that
work correctly on other charts. I checked the chart to very the name of the
object is in the chart.
Any help would be great...
I really would like to be able to generate the charts on the fly but there
is so much formatting that it makes it impractical.
Thanks.