I'm trying to add many series to a chart using VBA, as in the code below.

For i = 0 To 9
    Set serNew = chtMap.SeriesCollection.NewSeries
    With serNew
        .XValues = Range("Y4").Cells(1, 1 + 2 * i).Resize(32000, 1) 
        .Values = Range("Y4").Cells(1, 2 + 2 * i).Resize(32000, 1) 
    End With
Next i

The ranges for some of the series have no data in their cells yet; the user will write/load this data later. The idea is to have the chart ready for when they do.

Problem: when the loop hits such a yet empty range, I get an error 1004: Unable to set XValues property of the Series class. Why and is there a way around this?

The weird thing is that doing this manually in Chart menu --> |Source Data... works perfectly fine. Actually, if you record a macro while doing this manually, the result is as follows:

ActiveChart.SeriesCollection.NewSeries
ActiveChart.SeriesCollection(4).XValues = "=Sheet2!R4C31:R32003C31"
ActiveChart.SeriesCollection(4).Values = "=Sheet2!R4C32:R32003C32"

but then Excel gives an error when re-playing this macro!

Doing this manually is not a pleasant prospect. I guess I could stick sham data in the cells, create the series, and then delete the sham data. Do I really have to pull such a bait and switch on Excel?

link|improve this question

feedback

3 Answers

You could try to copy the range (both columns), and use paste special to add it to the chart:

TwoColumnRange.Copy
chtMap.SeriesCollection.Paste Rowcol:=xlColumns, SeriesLabels:=False, _
    CategoryLabels:=True, Replace:=False, NewSeries:=True
link|improve this answer
An answer from Mr. Peltier himself! Much obliged. Amazing, this actually works. +1 But I suffer from Copy-Paste aversion: the information transits in the system clipboard, which other running programs may read from and write to. I guess I've just been burned too many times to ever do this again. – Jean-François Corbett Apr 12 '11 at 16:51
feedback

I suggest (as I have done myself) to hide some fake data somewhere and have all the series default to point there. Also hide the series from the plot with .LineStyle=xlNone and .<arkeStyle=xlNone and even ActiveChart.Legend.LegendEntries(i).Delete. Then when customer fills in the data, run a macro that replaces where the series points, and sets the line/marker styles, as well as ActiveChart.HasLegend = True to recreate the legend entries. If fact I had to switch the legend off and then on again for things to reset properly.

Good luck.

link|improve this answer
Yeah, that's partly what I suggested myself in the question... Sort of a depressing solution, isn't it. – Jean-François Corbett Apr 12 '11 at 16:53
feedback
up vote 0 down vote accepted

I've decided to add a sheet button that calls a sub that can add the series after the data has been entered. It also checks whether the various ranges are empty before actually adding each series. This feels like the cleanest solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.