Sub DelTillGT()
Dim rng As Range
Set rng = Selection.Range.Duplicate
rng.End = ActiveDocument.Range.End
With rng.Find
.Text = "*\>"
.MatchWildcards = True
.Replacement.Text = ""
.Execute Replace:=wdReplaceOne
End With
End Sub
Does the plus sign connect with anything? I'm getting red when I paste that into my VBE