I
Ian Mangelsdorf
Im getting a nasty message when using this code
With ActiveChart.SeriesCollection.NewSeries
.Name = "2"
.Values = Range(.Cells(5, "b"), .Cells(5, "l"))
.XValues = Range(.Cells(length, "b"), .Cells(length, "l"))
End With
I want to be able to cycle through several samples ( the length var).
Im assuming .values doesnt like range(.cell etc
Is there another way to get this done
Cheers
Ian
With ActiveChart.SeriesCollection.NewSeries
.Name = "2"
.Values = Range(.Cells(5, "b"), .Cells(5, "l"))
.XValues = Range(.Cells(length, "b"), .Cells(length, "l"))
End With
I want to be able to cycle through several samples ( the length var).
Im assuming .values doesnt like range(.cell etc
Is there another way to get this done
Cheers
Ian