View Single Post
  #3   Report Post  
Posted to microsoft.public.word.docmanagement
DeanH DeanH is offline
external usenet poster
 
Posts: 1,862
Default Update Table of Contents

Jay, many thanks for your help.

To add:
This macro obviously only updates the tables, how about the cross-references?
My usual process is Ctrl-A, F9, then update entire TOC x3.
This updates all cross-references, Figure & Table numbering, TOC and List of
Figures & Tables.

Again many thanks.
Have a good day.
DeanH

"Jay Freedman" wrote:

You can't really change the default, but you can install this macro
and assign a toolbar button and/or keyboard shortcut to it.

Sub UpdateTableOfContents()
Dim toc As TableOfContents

For Each toc In ActiveDocument.TablesOfContents
toc.Update
Next
End Sub

See http://www.gmayor.com/installing_macro.htm,
http://www.word.mvps.org/FAQs/Custom...roToHotkey.htm
and
http://www.word.mvps.org/FAQs/Custom...oToToolbar.htm
if needed.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

On Fri, 3 Nov 2006 04:44:02 -0800, DeanH
wrote:

Word 2000 SP3

Is it possible to change the default setting of the Update Table of Contents
options from "Update page numbers only" to "Update entire table" instead?

Many thanks in advance of your assistance.
DeanH