I'm trying to fill in this =SERIES function to populate a line plot in Excel 2007.
=SERIES($BB$1,$BB$2:$BB$16,$BC$2:$BC$16,1)
Now the range $BB$2:$BB$16 and the one that follows are set for illustration. However, my plot needs to find a new range each time dynamically since the number of data points my function returns are different each time.
I can get the number of data points with a =COUNTA(BB2:BB1000), then I can chuck this number (plus 1 to make reference right) into the spot where 16 is in this case. How would I reference the following string as a range?
="$BB$2:$BB$" & COUNTA(BB2:BB1000)
In the place of
=SERIES([Cell],[Range],[Range]...)
If I just input this Excel won't take it. I tried INDIRECT but it returns the value of a cell, and can't be used as a range
SERIESSUM
formula? I don't think theSERIES
formula exists in excel? is it an add on or something? – Jaycal Jul 19 '13 at 20:55