M
Mark64
I have the following macro that I was given from another question here, which
I use to update an entire document, fields, headers, footers, everything.
However I have noticed that it is not updating my Table of Contents and Table
of Figures. Do I need to add something more to this.
Dim pRange As Word.Range
For Each pRange In ActiveDocument.StoryRanges
Do Until pRange Is Nothing
pRange.Fields.Update
Set pRange = pRange.NextStoryRange
Loop
Next
I use to update an entire document, fields, headers, footers, everything.
However I have noticed that it is not updating my Table of Contents and Table
of Figures. Do I need to add something more to this.
Dim pRange As Word.Range
For Each pRange In ActiveDocument.StoryRanges
Do Until pRange Is Nothing
pRange.Fields.Update
Set pRange = pRange.NextStoryRange
Loop
Next