Sub ClearPicturesOnly()
Dim SH As Shape
For Each SH In ActiveSheet.Shapes
If SH.Type = msoPicture Then SH.Delete
Next
End Sub
????Another way:
Code:activesheet.pictures.delete
All these years (both during my Excel time and my time before in the compiled VB world) and I never really played much with the Object Browser. Thanks for opening my eyes. Oh, and a side effect that I just noticed... setting the Show Hidden Members option in the Object Browser window makes the hidden members now show up in intellisense for the objects to which they apply.Right-click in an object browser window and select View hidden members to see lots of other collections -- Buttons, Drawings, DropDowns, GroupBoxes, Labels, ...