我正在为 Excel xy-Diagramm 编写 Makro 图表几乎是正确的,但我复制了 DataSeriesNames;我已经尝试过所有系列并比较名称。没有错误,但它不起作用。
代码是这样的:
For a=1 to Count
If ActiveChart.SeriesCollection(Count).Name = Range("A2").Value Then
Name = true
End If
a = a + 1
Next
If Name = false Then
ActiveChart.SeriesCollection.NewSeries
End If
ActiveChart.SeriesCollection(Count).Name = "='Tasks'!$D$" & i
ActiveChart.SeriesCollection(Count).XValues = "='Tasks'!$B$" & i
ActiveChart.SeriesCollection(Count).Values = "='Tasks'!$C$" & i
制造罗宾