Trying to move excessive paragraph gaps via this procedure.
Sub RemoveGaps()
wrdDoc.Content.Select
Selection.Find.ClearFormatting
Selection.Find
Try this
Sub RemoveGaps()
wrdDoc.Content.Select
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "^p^p" '<~~~ See this
.Replacement.Text = "^p"
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = True
.MatchWildcards = False '<~~ Set this to false
End With
Selection.Find.Execute Replace:=wdReplaceAll
If Selection.Find.Execute = True Then
Call RemoveGaps
End If
End Sub