Skip to main content

How to change the font size of comment balloon in Word document?

As below screenshot shown, if you want to enlarge the font size of comment balloon in Word document, what can you do? This article will show you two methods to solve this problem.

Change the font size of comment balloon with build-in function in Word

Change the font size of comment balloon with VBA code


Change the font size of comment balloon with build-in function in Word

You can directly change the font size of balloon text in the All Styles pane in Word. Please do as follows.

1. Press the Ctrl + Alt + Shift + S keys to open the Styles pane.

2. In the Styles pane, click Options. See screenshot:

3. In the opening Style Pane Options window, select All styles from the Select styles to show drop-down list.

4. Then click OK to return to the Styles pane, please scroll down to find the Balloon Text line, click the button to expand the drop down list, and then click Modify. See screenshot:

5. In the Modify Style window, select a font size as you need in the Formatting section as below screenshot shown, and then click the OK button.

6. Close the Styles pane.

Then the font size of all comment balloons is changed to the specified one.

Note: The setting will apply to all comments in the future.


Change the font size of comment balloon with VBA code

This section will introduce a VBA code to help you easily change the font size of comments balloon in Word document.

1. In the document you will change the font size of comment balloon, press the Alt + F11 keys to open the Microsoft Visual Basic for Applications window.

2. In the window, click Insert > Module. Then copy below VBA code into the Module window.

VBA code: change the font size of comment balloon in Word

Sub SetCommentTextStyle()
'Updated by ExtendOffice 20181112
    Dim objComment As Comment
    Dim objDoc As Document
    Dim strFontName As String
    Dim strFontSize As String 
    Set objDoc = ActiveDocument
    strFontName = InputBox("Enter text font name here: ", "Font name")
    strFontSize = InputBox("Enter font size here: ", "Font size") 
    With objDoc
      For Each objComment In .Comments
        objComment.Range.Font.Name = strFontName
        objComment.Range.Style = ActiveDocument.Styles("Balloon Text Char")
      Next objComment
    End With
    ActiveDocument.Styles("Balloon Text").Font.Size = Val(strFontSize)
End Sub

3. Press the F5 key to run the code.

4. In the first Kutools for Word dialog box, enter a new font for your comment and click OK.

5. In the second Kutools for Word dialog box, type in the font size as you need and click OK.

Then the font size of all comment balloons is changed to the specified one in current document.

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 (4)
Rated 4.75 out of 5 · 2 ratings
This comment was minimized by the moderator on the site
Neither "comment text" nor "baloon text" present in Styles...
This comment was minimized by the moderator on the site
Does not work on current version of Word for Office 365 for Windows. Even though I specify Balloon text, it only applies the change to the body text of the Word doc. I've tried this several times and get the same result, even when I choose "Comment text" instead of Ba,lon text.
This comment was minimized by the moderator on the site
Perfect explanation and solution! Thanks a lot!
I was looking for this solution for hours...😍
Rated 5 out of 5
This comment was minimized by the moderator on the site
Thank you. I would never have found this, buried deep in MS menu structure.
Rated 4.5 out of 5
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations