Hi,
If you are using values rather than cell references you are no doubt
hitting the limit for the series formula length, which is about 1024
characters.
So a series formula references 4 rows looks like this
=SERIES(,Sheet1!$B$3:$B$6,Sheet1!$C$3:$C$6,1)
but when using an array of values looks like this
=SERIES(,{"a","b","c","d"},{1,2,3,4},1)
if you extend the range to row 43 the formula looks more like this
=SERIES(,Sheet1!$B$3:$B$43,{1,2,3,4,1,5,6,7,1,8,9,10,1,11,12,13,1,14,15,16,1,17,18,19,1,20,21,22,1,23,24,25,1,26,27,28,1,29,30,31,1,0,0},1)
And as you appear to be going to row 14575 the formula is going to be
too long. You will hit the limit a lot sooner if you have floating point
values.
Cheers
Andy
> I'm working on a macro to get a chart from a dynamic range of cells
> (selected according to the date introduced for the user in the worksheet).
[quoted text clipped - 46 lines]
> ActiveChart.SeriesCollection(3).Values = ISRM
> ActiveChart.SeriesCollection(3).Name = "=ALLDATA2!R2C16"

Signature
Andy Pope, Microsoft MVP - Excel
http://www.andypope.info