You are on page 1of 1

Sub PictureKiller()

Dim s As Shape, rng As Range

Set rng = Range("A1:L7")

For Each s In ActiveSheet.Shapes

If Intersect(rng, s.TopLeftCell) Is Nothing Then

Else

s.Delete

End If

Next s

End Sub

You might also like