Sub PunctuationToFullPoint() ' Paul Beverley - Version 19.11.21 ' Changes the next punctuation item to a full point trackIt = True searchChars = ":;," newChar = "." myTrack = ActiveDocument.TrackRevisions If trackIt = False Then ActiveDocument.TrackRevisions = False Set rng = Selection.Range.Duplicate rng.End = ActiveDocument.Content.End If Len(rng) > 1000 Then rng.End = rng.Start + 1000 For Each ch In rng.Characters If InStr(searchChars, ch.Text) > 0 Then ch.Select gotChar = True Exit For Else End If Next ch If gotChar = False Then Beep ActiveDocument.TrackRevisions = myTrack Exit Sub End If Selection.TypeText Text:=newChar ActiveDocument.TrackRevisions = myTrack End Sub