View Single Post
 
Old 02-28-2018, 03:00 AM
eduzs eduzs is offline Windows 10 Office 2010 32bit
Expert
 
Join Date: May 2017
Posts: 266
eduzs is on a distinguished road
Default

You can try a VBA macro code like that:

Code:
Sub x()

Dim MyPara As Paragraph

For Each MyPara In ActiveDocument.Paragraphs
    If MyPara.Range.Characters.Count <= 4 Then MyPara.Range.Delete
Next MyPara

End Sub
Backup your original files before do any modifications or test, test before use, use at your own.
__________________
Backup your original file before doing any modification.
Reply With Quote