View Single Post
 
Old 02-19-2023, 07:54 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

Perhaps this is what you wanted
Code:
Sub ChangeListFonts()
  Dim aLT As ListTemplate, aLL As ListLevel
  For Each aLT In ActiveDocument.ListTemplates
    For Each aLL In aLT.ListLevels
      If aLL.Index <> 3 Then
        aLL.Font.Name = "Times New Roman"
      End If
    Next aLL
  Next aLT
End Sub
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote