Kind of curious why this never moves to Next Paragraph ?
If line <<<<< is remmed out it does, but still has me baffled.
Code:
For Each p In ActiveDocument.Paragraphs
Thistext = p.Range.Text
Debug.Print Thistext
If meetssomecondition = True Then
p.Range.Font.Bold = True
p.Range.Text = Thistext <<<<<
End If
Next