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:
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!
Dive into the highlighted features below or click here to explore the full power of Kutools for Word.
๐ Document Mastery: Split Pages / Merge Documents / Export Selection in Various Formats (PDF/TXT/DOC/XLSX) / 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 our Insert Group
๐ Precision Selections: Pinpoint specific pages / tables / shapes / heading paragraphs / Navigate with ease using our Select Group
โญ Star Enhancements: Navigate swiftly to any location / auto-insert repetitive text / seamlessly toggle between document windows / 11 Conversion Tools ...
Transform your Word tasks with Kutools. ๐ Download with 30-day trial Now ๐.
