View Single Post
 
Old 07-28-2018, 08:15 PM
gmayor's Avatar
gmayor gmayor is offline Windows 10 Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,144
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

Maybe with the macro


Code:
Sub macro1()
Dim orng As Range
Dim opara As Paragraph
    For Each opara In ActiveDocument.Paragraphs
        If opara.Style Like "List*" Then
            Set orng = opara.Range
            orng.Collapse 1
            orng.MoveEndUntil Chr(32)
            orng.End = orng.End + 1
            orng.Text = ""
        End If
    Next opara
lbl_Exit:
    Set opara = Nothing
    Set orng = Nothing
    Exit Sub
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote