Skip to main content

 How to accept track changes from specific one user in Word document?

Supposing, you have a Word document that reviewed by multiple persons as following screenshot shown. Now, you just need to accept the track changes from one specific person. How could solve this task in Word document?

doc accept one user 1

Accept track changes from one specific user in Word

Accept track changes form one specific user with VBA code


Accept track changes from one specific user in Word

To accept the track changes from only one user, the Show Markup feature in Word can help you, please do as this:

1. Open the Word file contains the track changes, and then click Review > Show Markup > Specific People, and then uncheck All Reviewers to hide all reviews, see screenshot:

doc accept one user 2

2. Then, go on clicking Show Markup > Specific People, and then check one reviewer whose track changes you want to accept, see screenshot:

doc accept one user 3

3. And then, click Accept > Accept All Changes Shown, see screenshot:

doc accept one user 4

4. Now, only the track changes from this specific person have been accepted, see screenshot:

doc accept one user 5

5. At last, you should display the track changes from other reviewers, please click Show Markup > Specific People, check All Reviewers as following screenshot shown:

doc accept one user 6


Accept track changes form one specific user with VBA code

If the above method is some troublesome for you, here is a simple VBA code which also can do you a favor, please do with the following steps:

1. Hold down the ALT + F11 keys to open the Microsoft Visual Basic for Applications window.

2. Click Insert > Module, and paste the following macro in the Module Window.

VBA code: Accept track changes from one user:

Sub Acceptoneuser()
    For Each xChange In ActiveDocument.Revisions
        If xChange.Author = "RubyMie" Then
            xChange.Accept
        End If
    Next
End Sub

Note:In the above code, you should change the user name “RubyMie” to your name as you need.

3. Then, press F5 key to run this code, and only the track changes from the reviewer you specified in the code have been accepted, see screenshot:

doc accept one user 7

Best Office Productivity Tools

Kutools for Word - Elevate Your Word Experience with Over 100 Remarkable Features!

🤖 Kutools AI Assistant: Transform your writing with AI - Generate Content  /  Rewrite Text  /  Summarize Documents  /  Inquire for Information based on Document, all within Word

📘 Document Mastery: Split Pages  /  Merge Documents  /  Export Selection in Various Formats (PDF/TXT/DOC/HTML...)  /  Batch Convert to PDF  /  Export Pages as Images  /  Print Multiple Files at once...

Contents Editing: Batch Find and Replace across Multiple Files  /  Resize All Pictures  /  Transpose Table Rows and Columns  /  Convert Table to Text...

🧹 Effortless Clean: Sweap away Extra Spaces  /  Section Breaks  /  All Headers  /  Text Boxes  /  Hyperlinks  /  For more removing tools, head to our Remove Group...

Creative Inserts: Insert Thousand Separators  /  Check Boxes  /  Radio Buttons  /  QR Code  /  Barcode  /  Diagonal Line Table  /  Equation Caption  /  Image Caption  /  Table Caption  /  Multiple Pictures  /  Discover more in the Insert Group...

🔍 Precision Selections: Pinpoint specific pages  /  tables  /  shapes  /  heading paragraphs  /  Enhance navigation with more Select features...

Star Enhancements: Navigate swiftly to any location  /  auto-insert repetitive text  /  seamlessly toggle between document windows  /  11 Conversion Tools...

👉 Want to try these features? Kutools for Word offers a 60-day free trial, with no limitations! 🚀
Free Download     Read More     Buy Now
 
Comments (0)
No ratings yet. Be the first to rate!
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations