View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.charting
Andy Pope Andy Pope is offline
external usenet poster
 
Posts: 2,489
Default Finding series index if I know the Series Name

Hi,

There is no index property. You would need to increment your own counter.
The order is dependent on 3 things. ChartType, Plot/Series Order and Axis.

What exactly are you trying to achieve?

Cheers
Andy

Barb Reinhardt wrote:
I have the following code to find the series index #, but it's not working.
What am I doing wrong.

Dim Series As Series
Dim SeriesNum As Integer
Dim SeriesName As String

SeriesName = "Y axis Labels"

Debug.Print CHARTNAME.SeriesCollection.Count
For Each Series In CHARTNAME.SeriesCollection
'On Error Resume Next
Debug.Print Series.Name
Debug.Print Series.Index <~~~~it doesn't like this.
If Series.Name = SeriesName Then
Debug.Print Series.Index
Exit For
End If


Next Series


Thanks!


--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info