The following code does its job, but is there a more efficient way to obtain the same result? Thanks!
Code:
Dim oRng As Range
Dim iType As Integer
For iType = 1 To 2
Set oRng = ActiveDocument.StoryRanges(iType)
With oRng.Find
.ClearFormatting
.Text = " ^p"
While .Execute
oRng.Characters.First.Delete
oRng.Collapse wdCollapseEnd
Wend
End With
Next iType