Hey,
Plz, I need some help with this code, In another workbook it worked. Specific on this one it's not working.
The error is occuring on the red line, right after it's added a new serie on the graph.
Sub Graph()
Dim y As Byte
Dim x As Byte
Dim a As Byte
Dim D As Byte
x = 0
y = 3
Workbooks("Test.xls").Activate
Worksheets("Plan1").Select
With ActiveSheet.ChartObjects("Graph 3").Activate
Do Until ActiveChart.SeriesCollection.Count = 0
ActiveChart.SeriesCollection(1).Delete
Loop
End With
With ActiveChart
Worksheets("Plan1").Select
a = Worksheets("Plan1").Range("U4")
Do Until a = y
y = y + 1
D = y
x = y - 3
a = a + 3
.SeriesCollection.NewSeries
.SeriesCollection(x).Name = Plan1.Cells(D, 18).Value .SeriesCollection(x).Values = Plna1.Cells(D, 19).Value
.SeriesCollection(x).XValues = Plan1.Cells(D, 20).Value
Loop
End With
End Sub