Deleting images when deleting entire row

gor

New Member
Joined
Dec 7, 2010
Messages
19
Folks,

I have a simple spreadsheet with product size, quantity, description and visual (containing a small image).



I'm looking for code that will delete images completely when deleting the entire row in which they reside. At the moment I have images set to "Move and size with cells", however this deposits the re-sized image over the cell lines above.

Is there a simply way to automatically delete an image from the worksheet when deleting the corresponding row?

Thanks in advance,

gor
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Hi,


If you are using code you could delete the picture when you call for the row delete - for example:


Code:
Sheets("Sheet1").Range("A22").EntireRow.Delete
ActiveSheet.Shapes("Picture 1").Delete

After a re-read I think you may be talking about manually deleting the row - then no idea as the image isn't associated with a cell it justs sits on top as far as i am aware.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,551
Members
449,088
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top