hi all...
i have 5 pictures in a sheet..i want remove only 4 pict...
how do make it in macros..
here this code but delete all pict..
Sub Kill_Pictures()For Each Shape In ActiveSheet.Shapes
If Left(Shape.Name, 7) = "Picture" Then
Shape.Delete
End If
Next
End Sub
i would like someone help me...