Feb 8, 2007 #1 rgandy Technical User Nov 17, 2005 38 US i have a workbook with a bunch of pictures they are either being labeled by excel as freeform, object or picture how can i cycle through these and delete them without hitting control objects (ie. dropdowns) is there a simple way? thanks
i have a workbook with a bunch of pictures they are either being labeled by excel as freeform, object or picture how can i cycle through these and delete them without hitting control objects (ie. dropdowns) is there a simple way? thanks
Feb 8, 2007 #2 RonRepp Technical User Feb 25, 2005 1,031 US Code: Dim S As Shape For Each S In ActiveSheet.Shapes S.Select Selection.Delete Next I hope this helps. Ron Repp If gray hair is a sign of wisdom, then I'm a genius. Upvote 0 Downvote
Code: Dim S As Shape For Each S In ActiveSheet.Shapes S.Select Selection.Delete Next I hope this helps. Ron Repp If gray hair is a sign of wisdom, then I'm a genius.