Activechart is the chart that is active, is currently selected if a object or the tab if a chart sheet.
There can only be a maximum of 1 activechart. And if no chart is selected it references nothing.
in the example file are chart sheets, chart objects. With chart objects both on worksheets and chart sheets.
this code will process them
Sub X()
Dim Sht As Worksheet
Dim Cht As Chart
Dim ChtObj As ChartObject
Dim ChtOnSheet As Chart
For Each Cht In ActiveWorkbook.Charts
Debug.Print "Chart Sheet " & Cht.Name
For Each ChtObj In Cht.ChartObjects
Set ChtOnSheet = ChtObj.Chart
Debug.Print , "Chart object", ChtObj.Name, "Chart name", ChtOnSheet.Name
Next
Next
For Each Sht In ActiveWorkbook.Worksheets
Debug.Print "Chart object on worksheet", Sht.Name
For Each ChtObj In Sht.ChartObjects
Set ChtOnSheet = ChtObj.Chart
Debug.Print , "Chart object", ChtObj.Name, "Chart name", ChtOnSheet.Name
Next
Next
End Sub
Bookmarks