Thread
:
Deleting charts on a sheet
View Single Post
#
3
Posted to microsoft.public.excel.programming
Flystar[_9_]
external usenet poster
Posts: 1
Deleting charts on a sheet
Try this:
Dim i As Integer
For i = 1 To ActiveSheet.ChartObjects.Count
ActiveSheet.ChartObjects(i).Delete
Next
--
Message posted from
http://www.ExcelForum.com
Reply With Quote
Flystar[_9_]
View Public Profile
Find all posts by Flystar[_9_]