![]() |
#2
|
||||
|
||||
![]()
I don't think you will have much luck using the find/replace dialog to find instanced of tracked revisions and exclude non-tracked content.
But it is possible to use a macro to step through all tracked revisions to find specific instances where a character was tracked and accept just those revisions. Code:
Sub AcceptCharChanges() Dim aRev As Revision, aChar As String aChar = vbCr For Each aRev In ActiveDocument.Revisions If aRev.Type = wdRevisionInsert Then If aRev.Range.Text = aChar Then aRev.Accept End If Next aRev aChar = Chr(31) For Each aRev In ActiveDocument.Revisions If aRev.Type = wdRevisionInsert Then If aRev.Range.Text = aChar Then aRev.Accept End If Next aRev End Sub
__________________
Andrew Lockton Chrysalis Design, Melbourne Australia |
Tags |
ms word 2013, search, track changes |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
Priyantha Gamini | Word VBA | 7 | 12-14-2022 05:18 AM |
![]() |
eduzs | Word VBA | 9 | 07-27-2020 07:43 AM |
![]() |
Janelle | Word | 4 | 07-22-2016 09:33 AM |
![]() |
konopca | Word VBA | 5 | 02-20-2014 02:34 PM |
How to find a specific word in Powerpoint? | Ozard80 | PowerPoint | 0 | 05-11-2011 04:42 PM |