Hi! What about this one:
Code:
Function ChangeFont(oDoc As Document) As Boolean
Dim oStory As range
On Error GoTo err_Handler
For Each oStory In oDoc.StoryRanges
If oStory.Font.Name = "Arial" Then
oStory.Font.Name = "Calibri"
End If
Next oStory
Set oStory = Nothing
lbl_Exit:
Exit Sub
err_Handler:
ChangeFont = False
Resume lbl_Exit
End Function