![]() |
|
#4
|
||||
|
||||
|
Thanks for the feedback!
Note that there is also a macro (created by Doug Robbins) which will reset the character formatting for all lists in a document: Code:
Sub Fixit()
'Macro created by MVP Doug Robbins
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
__________________
Stefan Blom Microsoft Word MVP Microsoft 365 apps for business Windows 11 Professional |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Numbered Lists: Linking a number to another place in document | MattFWG | Word | 5 | 11-24-2014 08:14 AM |
How to format a TOC (level 1) using a number, but have the number hidden in the text
|
porpoiseoil | Word | 1 | 09-13-2014 12:53 PM |
| Control the size of space between heading number and heading text | Dr Wu | Word | 1 | 07-17-2013 12:24 PM |
Heading level numbering in 2010 - wrong after second header level 1
|
taran | Word | 3 | 07-08-2013 01:12 PM |
| One level 3 heading number is wrong - but all others are fine | Dr Wu | Word | 4 | 05-09-2013 10:07 AM |