Skip to main content

How to change comment color in Word document?

Have you ever tried to change color of the comment balloons or comment text contents in a Word document? This article, I will talk about some method for dealing with this task in Word file.

Change the color of the comment balloons with Change Tracking Options feature

Change the color of the comment text contents with VBA code


Change the color of the comment balloons with Change Tracking Options feature

The Change Tracking Options feature can help you to change the comment balloons color as you need, please do as this:

1. Click Review > Change Tracking Options launcher, see screenshot:

doc change comment color 1

2. In the Track Change Options dialog box, click Advanced Options button, see screenshot:

doc change comment color 2

3. And then, in the Advanced Track Change Options dialog box, choose one color you like from the Comment drop down list, see screenshot:

doc change comment color 3

4. Then, click OK > OK to exist the dialogs, and now, the color of the comment balloons has been changed to your specified setting, see screenshot:

doc change comment color 4


Change the color of the comment text contents with VBA code

If you need to change the font color of the comment text, the following VBA code can do you a favor.

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

2. And then, click Insert > Module, copy and paste below code into the opened blank module:

VBA code: Change the color of the comment text in Word:

Sub ChangeCommentsColor()
    Dim xComm As Comment
    For Each xComm In ActiveDocument.Comments
        xComm.Range.Font.Color = wdColorRed
    Next
End Sub

Note: In the above code, you can change the red color to your need in this script: xComm.Range.Font.Color = wdColorRed.

3. And then, press F5 key to run this code, and the comment text font color has been changed as following screenshot shown:

doc change comment color 5


Recommended Word Productivity Tools

 

Kutools For Word - More Than 100 Advanced Features For Word, Save Your 50% Time

  • Complicated and repeated operations can be done one-time processing in seconds.
  • Insert multiple images across folders into Word document at once.
  • Merge and combine multiple Word files across folders into one with your desired order.
  • Split the current document into separate documents according to heading, section break or other criteria.
  • Convert files between Doc and Docx, Docx and PDF, collection of tools for common conversions and selection, and so on...
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