![]() |
#2
|
||||
|
||||
![]()
No. However, you can use a macro to automatically accept all field updates:
Code:
Sub AcceptTrackedFields() Application.ScreenUpdating = False 'This sub accepts any tracked changes instigated by Word affecting fields – not field code edits Dim Story As Range, oFld As Field, oRev As Revision, Rng As Range With ActiveDocument ' Loop through all range objects and accept tracked changes on fields For Each Story In .StoryRanges For Each oRev In Story.Revisions For Each oFld In oRev.Range.Fields oFld.ShowCodes = True Set Rng = oFld.Code With Rng .MoveEndUntil cset:=Chr(21), Count:=wdForward .MoveEndUntil cset:=Chr(19), Count:=wdBackward .End = .End + 1 .Start = .Start - 1 oFld.ShowCodes = False .Revisions.AcceptAll End With Next Next Next End With Set Rng = Nothing Application.ScreenUpdating = True End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Error: "Changes made were lost...reconnect with server", when switching "from" field | randhurrle | Outlook | 2 | 02-25-2015 06:51 PM |
Replying to "Sent Items", the "To:" field always defaults to me rather than person I sent to | ravl13 | Outlook | 4 | 10-30-2014 06:29 PM |
![]() |
Velocitydreamer | Word | 1 | 05-26-2013 07:04 AM |
![]() |
PaulBurcham | Word | 1 | 04-20-2013 11:18 AM |
![]() |
Bones | Word | 3 | 06-08-2012 12:15 AM |