Code:
Sub ClearRed1()
Dim oRng As Range
ActiveDocument.TrackRevisions = True
Selection.Find.ClearFormatting
Set oRng = ActiveDocument.Range
With oRng.Find
With .Font
.StrikeThrough = True
.DoubleStrikeThrough = False
.Color = wdColorRed
End With
While .Execute
oRng.Delete
Wend
End With
ActiveDocument.TrackRevisions = False
lbl_Exit:
Exit sub
End Sub