View Single Post
 
Old 10-18-2016, 05:18 PM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is offline Windows 7 64bit Office 2013
Moderator
 
Join Date: Aug 2011
Posts: 4,005
Stefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to all
Default

To fix the numbering, run the following macro, based on a similar macro created by Doug Robbins:

Code:
Sub ResetCharFormattingForLists()
Dim lt As ListTemplate
Dim l as ListLevel
For Each lt In ActiveDocument.ListTemplates
For Each l In lt.ListLevels
l.Font.Reset
Next l
Next lt
End Sub
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote