Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
for each ser in activechart
for each pt in ser.points
'here's the stuff for each point
next
next
Sub GetPoints()
For Each ser In ActiveSheet.ChartObjects(1).Chart.SeriesCollection
For Each yVal In ser.Values
MsgBox yVal
Next
For Each xVal In ser.XValues
MsgBox xVal
Next
Next
End Sub