Forum Discussion
Noone_Important
Aug 04, 2023Copper Contributor
How to remove all images from a .rtf Word document
I have a very long (9000 page) .rtf Word document. It was created via OCR from 9000 pages of hardcopy. Occasionally the text includes images (as per the attached image). I realise there is the ...
Aug 08, 2023
Noone_Important Try running a macro containing the following code:
Dim i As Long
With ActiveDocument
For i = .Shapes.Count To 1 Step -1
.Shapes(i).Delete
Next i
End With