This will help you find every shape on a sheet. Replace the code to delete with your code.
[VBA]Dim Shp As Shape
For Each Shp In ActiveSheet.Shapes
Shp.Delete
Next[/VBA]