Finding Long Paragraphs

Written by Allen Wyatt (last updated November 29, 2025)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Word in Microsoft 365


Part of Olivia's responsibility as an editor is to pay particular attention to paragraphs that have a large number of words, determining if they can be simplified. She wonders if there is a way to somehow "flag" paragraphs that contain more than, say, 125 words.

This is most easily done with a macro. Here's a very simple example that will do exactly what Olivia requests:

Sub CheckParagraphLength1()
    Dim p As Paragraph

    For Each p In ActiveDocument.Paragraphs
        With p.Range
            If .Words.Count > 125 Then .HighlightColorIndex = wdYellow
        End With
    Next p
End Sub

The macro steps through each paragraph in the document and, if it contains more than 125 words, highlights it in yellow. This will make it easy to locate the offending paragraphs.

If you want to change the threshold at which highlighting is done, then a more robust version of the macro is called for:

Sub CheckParagraphLength2()
    Dim p As Paragraph
    Dim sInput As String
    Dim lMaxWords As Long
    Dim iParCount As Integer

    Do
        sInput = InputBox( _
          Prompt:="Maximum number of words allowed in a paragraph:", _
          Title:="Paragraph Length Check")

        If sInput = "" Then Exit Sub

        If IsNumeric(sInput) Then
            lMaxWords = CLng(sInput)
            If lMaxWords >= 25 Then Exit Do
        End If
        MsgBox "Enter a value of 25 or greater.", vbExclamation, "Invalid Value"
    Loop

    iParCount = 0
    For Each p In ActiveDocument.Paragraphs
        With p.Range
            .HighlightColorIndex = wdNoHighlight
            If .Words.Count > lMaxWords Then
                .HighlightColorIndex = wdYellow
                iParCount = iParCount + 1
            End If
        End With
    Next p
    MsgBox iParCount & " paragraphs were highlighted.", vbInformation, "Finished"
End Sub

When this version is run, the user is asked to enter the number of words to be used as the threshold. The prompt will repeat until the user enters a value of at least 25 words. If the input field is left blank, then the macro is cancelled. When the macro is complete, the user is shown a message box that indicates how many paragraphs were highlighted.

Speaking of highlighting, it should be noted that either of these macros will mess up or remove any highlighting already in the document. If you use highlighting for a different purpose, then the macro would need to be changed to flag paragraphs in some other way, such as by adding some text at the beginning of the document.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (10141) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Word in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Printing Only Selected Pages

When you print a worksheet, you don't need to print the whole thing. You can print only the pages you want. Here's how to ...

Discover More

Printing a Font List

Getting a list of fonts available in a document is not something you can easily do in Word. That is, unless you put the ...

Discover More

Word Styles and Templates

Styles are at the heart of Word's formatting power. Understanding how to use styles can greatly increase your ability to ...

Discover More

The First and Last Word on Word! Bestselling For Dummies author Dan Gookin puts his usual fun and friendly candor back to work to show you how to navigate Word 2019. Spend more time working and less time trying to figure it all out! Check out Word 2019 For Dummies today!

More WordTips (ribbon)

Easily Changing Username and Initials

Word uses usernames and initials to mark changes made while Track Changes is turned on. If you want to change those ...

Discover More

Speeding Up Cursor Movement

If you use the arrow keys to move the insertion point through the document, you may have noticed that it can be slow ...

Discover More

Consistent Spacing

It is a good idea to make sure that the spacing following each sentence in your document is consistent. Here's a handy ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 0 + 6?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.