Sub Renumber() Dim i As Long For i = 1 To Selection.Words.Count With Selection.Words(i) If IsNumeric(.Text) Then .Text = (CLng(.Text) + 6) Mod 8 + 1 End If End With Next End Sub