View Single Post
 
Old 03-07-2016, 12:06 AM
poetofpiano poetofpiano is offline Windows 8 Office 2013
Novice
 
Join Date: Sep 2015
Posts: 25
poetofpiano is on a distinguished road
Default

Figured out a piece of the puzzle. The following extends the current selection to the next instance of ". ":
Code:
    Selection.Extend
    Selection.Find.ClearFormatting
    With Selection.Find
        .Text = ". "
        .Replacement.Text = ""
        .Forward = True
        .Wrap = wdFindAsk
    End With
    Selection.Find.Execute
Now I just need to add exclusions and also include the paragraph symbol as a match for the search, and then just put it all together. Again, thanks again to anyone who can help!
Reply With Quote