View Single Post
 
Old 02-15-2019, 10:27 PM
Guessed's Avatar
Guessed Guessed is offline Windows 10 Office 2016
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 4,176
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default

I would presume it doesn't work for you because the font name has been locally overridden on your instances of that style. Certainly the following works for me if there is no local font formatting.
Code:
Sub ChangeStyleDef()
  ActiveDocument.Styles("Normal").Font.Name = "Times New Roman"
End Sub
If that fails on your document, does adding a font reset resolve that particular issue?
ActiveDocument.Range.Font.Reset
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote