Count series in chart

  • Thread starter Thread starter kaiser
  • Start date Start date
K

kaiser

Hello

Can anyone tell me how to count (in vba) the series in a chart?
 
"SeriesCollection" object in help covers that.
--
Jim Cone
San Francisco, USAhttp://www.realezsites.com/bus/primitivesoftware


Hello
Can anyone tell me how tocount(in vba) theseriesin achart?

I saw that but I am having troubles getting it to work.

i = Worksheets("Data").ChartObjects("Chart 3").SeriesCollection.Count

should work as far as I understand but it doesnt. note that the chart
is imbedded in a sheet and not in its own sheet.

Any thoughts?

I get "Unable to get ChartsObject property of the Worksheet Class"

Thanks
 
Hi,

You are missing a level in the object reference.

i = Worksheets("Data").ChartObjects("Chart 3").CHART.SeriesCollection.Count

Cheers
Andy
 
Hi,

You are missing a level in the object reference.

i = Worksheets("Data").ChartObjects("Chart3").CHART.SeriesCollection.Count

Cheers
Andy

--












- Show quoted text -

Thanks - works
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top