R
Rob F
Hi
In its wisdom, my company has decided to change its corporate font from Gill
Sans to Arial (I know, I know!).
I've written this macro to change the font in a Word document (inc headers
and footers) to Arial.
Sub ChangeFontToArial()
Dim aStory As Range
On Error Resume Next
For Each aStory In ActiveDocument.StoryRanges
aStory.Font.Name = "Arial"
Next aStory
End Sub
It works OK, except it doesn't correct the font of lettered bullet points.
Can someone help tweak my code so it does, please?
Thanks
Rob F
In its wisdom, my company has decided to change its corporate font from Gill
Sans to Arial (I know, I know!).
I've written this macro to change the font in a Word document (inc headers
and footers) to Arial.
Sub ChangeFontToArial()
Dim aStory As Range
On Error Resume Next
For Each aStory In ActiveDocument.StoryRanges
aStory.Font.Name = "Arial"
Next aStory
End Sub
It works OK, except it doesn't correct the font of lettered bullet points.
Can someone help tweak my code so it does, please?
Thanks
Rob F