I have a Word 2007 file and I want to change all usage of the Courier New font into
a Lucida Console font. I need a script that find all words formatted in that font and change
Sub ChangeFonts()
Dim doc As Document
Set doc = ActiveDocument
For i = 1 To doc.Range.Characters.Count
If doc.Range.Characters(i).Font.Name = "Courier New" Then
doc.Range.Characters(i).Font.Name = "Lucida Console"
End If
Next
End Sub