The following tells me that the name of the point is "S1P1" however the label on the chart says "Widget A." What do I have to use instead of .Name to get "Widget A?" Obviously this code is the start of something bigger.
![]()
Sub ListChart() Dim sh As Worksheet Dim chrt As ChartObject Set sh = Sheets("Sheet1") For Each chrt In sh.ChartObjects chrt.Activate MsgBox ActiveChart.FullSeriesCollection(1).Points(1).Name Next End Sub
Bookmarks