Thread
:
Losing Named Range Definitions
View Single Post
#
8
Posted to microsoft.public.excel.programming
ward376
external usenet poster
Posts: 360
Losing Named Range Definitions
This will delete all the charts on a sheet:
Sub delChart()
Dim x As Integer
For x = 1 To ActiveSheet.ChartObjects.Count
ActiveSheet.ChartObjects(x).Delete
Next x
End Sub
Cliff Edwards
Reply With Quote
ward376
View Public Profile
Find all posts by ward376