How to change comment color in Word document?
Customizing the appearance of comments in Word can enhance readability and organization during document review. This tutorial will show you how to change the color of the comment balloons using Change Tracking Options and how to change the text color within the comments using VBA.
Change the color of the comment balloons with Change Tracking Options
Change the color of the comment text contents with VBA code
Change the color of the comment balloons with Change Tracking Options
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:
2. In the Track Change Options dialog box, click Advanced Options button, see screenshot:
3. And then, in the Advanced Track Change Options dialog box, choose one color you like from the Comment drop down list, see screenshot:
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:
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:
Best Office Productivity Tools
Kutools for Word - Elevate Your Word Experience with Over 100 Remarkable Features!
🤖 Kutools AI Features: Generate Content / Rewrite Text / Document Q&A / Get Quick Answers / Translate documents / Polish Document (Preserve Format)...
📘 Document Mastery: Split Pages / Merge Documents / Export Selection in Various Formats (PDF/TXT/DOC/HTML...) / Batch Convert to PDF...
✏ 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 / Text Boxes / Hyperlinks / For more removing tools, head to the Remove group...
➕ Creative Inserts: Insert Thousand Separators / Check Boxes / Radio Buttons / QR Code / Barcode / 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 to Any Location / Auto-Insert Repetitive Text / Toggle Between Document Windows / 11 Conversion Tools...
Best Office Productivity Tools
Kutools for Word - 100+ Tools for Word
- 🤖 Kutools AI Features: Generate, Rewrite, Summarize, Translate Documents / Get Quick Answers / Polish Document (Preserve Format)
- 📘 Document Mastery: Split Pages / Merge Documents / Batch Convert to PDF
- ✏ Contents Editing: Batch Find and Replace / Resize All Pictures
- 🧹 Effortless Clean: Remove Extra Spaces / Remove Section Breaks
- ➕ Creative Inserts: Insert Thousand Separators / Insert Check Boxes / Create QR Codes