Word 2013 문서의 모든 필드 를 업데이트하는 방법을 원합니다 . (다른 버전에서 작동하면 더 나아집니다. 원래 Word 2007 에서이 문제가 있었으며 그 이후로는 아무런 변화가 없었습니다.) 여기에는 상호 참조, 페이지 번호, 목차, 색인, 헤더 등이 포함됩니다. 를 눌러 업데이트 할 수 있다면 업데이트 F9하고 싶습니다.
이론적으로 필드를 업데이트하면 다른 필드를 업데이트해야 할 수 있습니다. 예를 들어 긴 목차가 본문의 일부 페이지 번호를 변경합니다. 일반적인 경우를 처리하는 것이 충분합니다. 실제로 실행해야한다면 괜찮습니다. 매크로가 안정화되기 전에 2 ~ 3 번 반복합니다. 모든 것을 찾는 단일 매크로를 원합니다.)
지금까지의 시도는 그림 내부의 텍스트 상자에서 필드를 업데이트하지 않습니다. 그것들을 어떻게 업데이트하고, 무엇을 놓쳤습니까?
편집 : 이미 가지고있는 것과 주어진 대답을 결합하면 알려진 결함으로 모든 것을 업데이트하는 것처럼 보이는 매크로가 나타납니다 .
'' Update all the fields, indexes, etc. in the specified document.
Sub UpdateAllFieldsIn(doc As Document)
'' Update tables. We do this first so that they contain all necessary
'' entries and so extend to their final number of pages.
Dim toc As TableOfContents
For Each toc In doc.TablesOfContents
toc.Update
Next toc
Dim tof As TableOfFigures
For Each tof In doc.TablesOfFigures
tof.Update
Next tof
'' Update fields everywhere. This includes updates of page numbers in
'' tables (but would not add or remove entries). This also takes care of
'' all index updates.
Dim sr As range
For Each sr In doc.StoryRanges
sr.Fields.Update
While Not (sr.NextStoryRange Is Nothing)
Set sr = sr.NextStoryRange
'' FIXME: for footnotes, endnotes and comments, I get a pop-up
'' "Word cannot undo this action. Do you want to continue?"
sr.Fields.Update
Wend
Next sr
End Sub
'' Update all the fields, indexes, etc. in the active document.
'' This is a parameterless subroutine so that it can be used interactively.
Sub UpdateAllFields()
UpdateAllFieldsIn ActiveDocument
End Sub
Dim toa As Word.TableOfAuthorities / For Each toa In ActiveDocument.TablesOfAuthorities / toa.Update / Next