Excel Excel Charts

Joined
Feb 24, 2006
Messages
1
Reaction score
0
ActiveChart.SeriesCollection(1).Values

Can be used to set values for an Excel chart

e.g.

ActiveChart.SeriesCollection(1).Values = mystring mystring = "1,2,3,4,5,6, etc"

ActiveChart.SeriesCollection(1).Values = Some worksheet range (A1:A1000)

mystring has to be less than 256 characters. Is there a way to use a collection etc to draw a chart > 256 characters in length but I want to do it in VBA i.e.
ActiveChart.SeriesCollection(1).Values = "some kind of array or collection"


If this is on the wrong board please let me know

Richard
 
Last edited:

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

Similar Threads

Bubble Chart 1
Chart Control 11
draw chart 2
Excel 2007 Charting macro 1
esudden extreme slowdown of charting 2
Issue with Multiple Graph Creation in VB 1
Chart update using VBA 4
Excel Macro for Charts 1

Top