View Single Post
 
Old 08-18-2018, 05:10 PM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is offline Windows 10 Office 2016
Moderator
 
Join Date: Aug 2011
Posts: 4,003
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

Setting up the numbered styles carefully, as discussed in the article by Shauna Kelly, is definitely the way to go. :-)

That said, when numbers are "blacked out," you can often fix the problem by running the following macro created by Doug Robbins:

Code:
Sub FixNumberingLevels()
'Macro created by MVP Doug Robbins
For Each templ In ActiveDocument.ListTemplates
    For Each lev In templ.ListLevels
        lev.Font.Reset
    Next lev
Next templ
End Sub
See http://www.gmayor.com/installing_macro.htm.
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote