Shapes should work, the code could be written as:
I just prefer to use a more specific declaration of what I want removed. You wanted to delete a Picture, so I used that instead of the more generic Shape object.
For the error, I'd have to see your code and which line of code was producing the error. Based on the error message, I would guess that you had a misspelled variable or sheet reference.
.Address would bring the address back as an absolute reference (which just means using $ symbols): "$B$15".
I dislike the $ signs because I like to just type in the cell address without them "B15"
So using (0, 0) tells it to not use an absolute reference for both Column and Row (leave off the $ symbols).
As an extended explanation...
.Address => "$B$15"
.Address(0) => "$B15"
.Address(, 0) => "B$15"
.Address(0, 0) => "B15"
Bookmarks