D
Daniel Bonallack
I copy data from a webpage to Excel, then clear the shapes and icons off
using this loop. I know, it's so lame and inefficient, especially as there
are usually only 30 or so shapes to delete.
On Error Resume Next
For i = 1 To 2000
ActiveSheet.Shapes("Picture " & i).Select
Selection.Delete
Next i
What I would like is a loop that deletes each image without the redundant
work that the above loop goes through.
Can you help?
using this loop. I know, it's so lame and inefficient, especially as there
are usually only 30 or so shapes to delete.
On Error Resume Next
For i = 1 To 2000
ActiveSheet.Shapes("Picture " & i).Select
Selection.Delete
Next i
What I would like is a loop that deletes each image without the redundant
work that the above loop goes through.
Can you help?