Vba Delete All Picture In Multiple Sheet (All Sheets)

muhammad susanto

Well-known Member
Joined
Jan 8, 2013
Messages
2,089
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
hello...

i need your help about macro code to delete all pictures in multiple sheets (all sheet)..

any body help, thanks in advance..

m.sst
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
hello...

i need your help about macro code to delete all pictures in multiple sheets (all sheet)..

any body help, thanks in advance..

m.sst

For some reason, I have to activate each sheet for the code to work

Code:
Dim sh As Worksheet
    For Each sh In ThisWorkbook.Worksheets
    sh.Activate
    ActiveSheet.DrawingObjects.Delete
    Next sh
 
Upvote 0
Here's another example that loops though each shape within each of the worksheets, checks whether the shape is in fact a picture, and if so deletes it. Other types of shapes are not deleted.

Code:
Sub test()

    Dim wks As Worksheet
    Dim shp As Shape
    
    For Each wks In ThisWorkbook.Worksheets
        For Each shp In wks.Shapes
            If shp.Type = msoPicture Then
                shp.Delete
            End If
        Next shp
    Next wks
    
End Sub

Hope this helps!
 
Upvote 0

Forum statistics

Threads
1,223,894
Messages
6,175,254
Members
452,624
Latest member
gregg777

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