If the only shapes on the active sheet are diagrams, then you can select them all with this single line of code...This there a way to change the below code to select all Diagrams on the active sheet?
ActiveSheet.Shapes.Range(Array("Diagram 452")).Select
Sub SelectAllShapesOnTheActiveSheet()
ActiveSheet.Shapes.SelectAll
End Sub
Sub SelectAllDiagramsOnActiveSheet()
Dim Dia As Diagram, Sh As Shape
For Each Sh In ActiveSheet.Shapes
If Sh.Type = msoDiagram Then Sh.Select False
Next
End Sub
Thank you Both for the HELP!