B
Barb Reinhardt
I have the following:
For j = 1 To .Shapes.Count
If .Shapes(j).Type = 7 Then
If .Shapes(j).OLEFormat.ProgID = "MSGraph.Chart.8" Then
Debug.Print "Found Chart icount = " & iCount & " j=" & j
End If
End If
Next j
How do I get the graph title, if it exists?
For j = 1 To .Shapes.Count
If .Shapes(j).Type = 7 Then
If .Shapes(j).OLEFormat.ProgID = "MSGraph.Chart.8" Then
Debug.Print "Found Chart icount = " & iCount & " j=" & j
End If
End If
Next j
How do I get the graph title, if it exists?