/ Published in: Visual Basic
VBA script to remove all the images present in the active sheet of the Microsoft Excel spreadsheet.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Sub tester() Dim DrObj Dim Pict Set DrObj = ActiveSheet.DrawingObjects For Each Pict In DrObj Pict.Select Pict.Delete Next End Sub