Thread: [Solved] Multi-level list Weirdness
View Single Post
 
Old 08-19-2019, 05:25 AM
jthomas666 jthomas666 is offline Windows 10 Office 2016
Competent Performer
 
Join Date: Jun 2016
Location: Warner Robins, GA
Posts: 175
jthomas666 will become famous soon enough
Default

Quote:
Originally Posted by Stefan Blom View Post
See if running the following macro by MVP Doug Robbins fixes the blacked out numbering:


Code:
Sub Fixit()
Dim templ As ListTemplate
Dim lev As ListLevel
For Each templ In ActiveDocument.ListTemplates
    For Each lev In templ.ListLevels
        lev.Font.Reset
    Next lev
Next templ
End Sub
This Fixed it! Thank you so much!

So, what happened?
Reply With Quote