Created
January 26, 2018 02:57
-
-
Save simonlehmann/7273ff6014030c731eba83c4900cb32b to your computer and use it in GitHub Desktop.
Fixes Microsoft Word's multilevel numbered heading glitches (https://answers.microsoft.com/en-us/msoffice/forum/msoffice_word-mso_win10-mso_2013_release/word-2013s-heading-numbering-reverting-to-pipe/9129622c-8289-441b-b94f-7f7552acd828)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment