View Single Post
  #1   Report Post  
raydenl
 
Posts: n/a
Default Primary/Secondary Axis series count


Hi, I have a VBA function like so:


Code:
--------------------

Private Sub AddSeries(ByVal strName As String, ByVal rngValues As Range, ByVal rngValuesX As Range, ByVal xlAxis As XlAxisGroup)
With Charts("Chart").SeriesCollection.NewSeries
.AxisGroup = xlAxis

.ChartType = xlLine
.Name = strName
.Values = rngValues
.XValues = rngValuesX
End With
End Sub

--------------------


Sometimes I add a series to the Primary Y axis and other times to the
Secondary.

How can I determine how many series are on the Primary and how many on
the secondary?????

Application could begin with an unknown number of series already
present on each axis so can't use a counter.

Cheers,
Rayden


--
raydenl
------------------------------------------------------------------------
raydenl's Profile: http://www.excelforum.com/member.php...o&userid=25668
View this thread: http://www.excelforum.com/showthread...hreadid=390832