I have successfuly placed a number of graphics by coordinates on an spreadsheet but am having a problem deleting them with a macro. The Gif files are called up from a specific path and loaded into an array as can be seen below, but as these are generated each time I launch the application they attract a 'new' increment number. Is there anyway I can call these without refering to the picture number??
Sub Clear_Graphics()
ActiveSheet.Shapes.Range(Array("Picture 224", "Picture 225", "Picture 226"
). _
Select
Selection.Delete
End Sub
Regards
DF
Sub Clear_Graphics()
ActiveSheet.Shapes.Range(Array("Picture 224", "Picture 225", "Picture 226"
Select
Selection.Delete
End Sub
Regards
DF