I can't delete an image in excel workbook
I've seen that "stacking" thing before. This is a quick and dirty macro
that should delete images on your screen.
Sub Macro1()
Dim ShapeName As Shape
For Each ShapeName In ActiveSheet.Shapes
ActiveSheet.Shapes(ShapeName.Name).Delete
Next ShapeName
End Sub
Try that on a backed up copy of your file: paste it in as a macro, and
run.
|