Robert P. Stearns...
Is there a way to delete more than one graphic at a time from a worksheet?
Picking one at a time is a pain if you have lots to delete.
Robert,
If they are shapes, then you can use the following:
Sub DeleteShapes()
Dim myShape As Shape
For Each myShape In ActiveSheet.Shapes
myShape.Delete
Next
End Sub
If it doesn't work, find out what the graphic is, and then just modify the
code to suit. Or come here and tell us what the "graphic" is, and we will
modify the code for you. One way to find out what the graphic is, is to
simply Tools | Macro | Record New Macro and then manually delete one
graphic. Look at the code generated. It will tell you what it deleted.
Hope that helps.
Regards,
Kevin