I have an XY chart. X values are in column A, with a column name in A1.
Cell A101 = 10
Since the array returned by activechart.seriescollection(index).xvalues
is 1 based, item 100 of the array for any of the series in the chart should (it seems to me) return the value of 10.
However, in the immediate window:
Same for any series, same value returned if referenced in code.
Can anyone tell me why this is, and more importantly, how to fix it?
Cell A101 = 10
Since the array returned by activechart.seriescollection(index).xvalues
is 1 based, item 100 of the array for any of the series in the chart should (it seems to me) return the value of 10.
However, in the immediate window:
Code:
c = activechart.SeriesCollection (1).xvalues
? c(100)
9.99999999999998
Same for any series, same value returned if referenced in code.
Can anyone tell me why this is, and more importantly, how to fix it?