View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ivan Raiminius Ivan Raiminius is offline
external usenet poster
 
Posts: 258
Default Is there a property to get the values for a point in a chart series?

Hi Bruce,

try something similar to this (with appropriate changes to suit your
needs):
Worksheets(1).ChartObjects(1).Chart.SeriesCollecti on(1).Points(1)

or see help for points collection object.

Regards,
Ivan