Please Note: This article is written for users of the following Microsoft Word versions: 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Word in Microsoft 365. If you are using an earlier version (Word 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Word, click here: Displaying Quick Document Statistics.

Displaying Quick Document Statistics

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


3

Word tracks all sorts of information about your documents. If you know where to look, you can quickly display much of that information. For instance, if you want to quickly determine the number characters, words, lines, paragraphs, and pages in your document, you can display the Review tab of the ribbon and click the Word Count tool in the Proofing group. Word displays the Word Count dialog box, and quickly calculates the statistics about the document. (If you are working on a huge or complex document, the calculations may take a short amount of time.) (See Figure 1.)

Figure 1. The Word Count dialog box.

Notice at the bottom of the dialog box is a check box that indicates whether Word should include information in the footnotes and endnotes in its calculations. You should select this option, as desired. When you are done viewing the statistics, click on the Close button.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (12379) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Word in Microsoft 365. You can find a version of this tip for the older menu interface of Word here: Displaying Quick Document Statistics.

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

Resetting a Single Shortcut Key

Need to get rid of a keyboard shortcut key you previously defined? It's easy to do if you follow these steps.

Discover More

Printing a Key Assignment List

When you create custom shortcut keys in Word, you may (at some point) want to get a printout of what those key ...

Discover More

Resizing a Picture

Place a graphic into a worksheet, and it is inevitable that you'll need to change the size of that graphic. Here's the ...

Discover More

Discover the Power of Microsoft Office This beginner-friendly guide reveals the expert tips and strategies you need to skyrocket your productivity and use Office 365 like a pro. Mastering software like Word, Excel, and PowerPoint is essential to be more efficient and advance your career. Simple lessons guide you through every step, providing the knowledge you need to get started. Check out Microsoft Office 365 For Beginners today!

More WordTips (ribbon)

Creating a List of Cross-References

Cross-referencing has long been a capability in Word documents. You can easily add and remove cross-references but ...

Discover More

Creating Many Index Entries at Once

Word makes it fairly easy to create an index. It is creating the index entries that can be tedious, especially if you ...

Discover More

Enforcing a Do-Not-Use Word List

Got a list of words you don't want to appear in your documents? There are a number of ways that you can make sure they ...

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 seven more than 9?

2026-04-09 05:53:38

barry

@Timothy J. McGowan:
Wonderful, thank you. So elegant when you know what to do. :)


2026-04-08 18:17:26

Timothy J. McGowan

@barry:

What you point out about the ability of Word to know when we mean a mark of punctuation to end a sentence is valid. You can get by with a simpler and faster macro, though:

Sub CountItems()
' Display the number of sentences in the active document
MsgBox "Word recognizes " & ActiveDocument.Sentences.Count & " sentences in this document."
End Sub


2026-04-06 12:38:38

barry

Using Word (Office) 2021 Windows 11.
The statistics available do not include a sentence count. Is ther more to it than I have assumed?
I would like to get a count for the number of 'sentences' in a document. I am wondering what MS Word thinks of as a sentence. With a few different checks I got quite different results! After some tedious counting and testing I think a 'sentence' is any of the following...

Any apha numeric character, brackets etc followed by the paragraph mark (pilcrow).
an object (figure)
A caption will count as two sentences if full stop is included after the figure number as per:
Figure 1. caption text
Text with two pilcrows (an empty paragraph) counts as one sentence.
The punctuation marks- ! ? ... : will count as terminating a sentence; even when in tandem as in:
by saving the document!?....

Have I missed any?
Incidentally, where I have VBA code mid sentence as in: "The .Count property for the Words collection." will count as a single sentence (ignoring the mid sentence full stop). This also applies if the space after the full stop ending a sentence is missing.
As a sentence counting procedure, I came up with the following by 'cobbling' together parts from your past Tips:

Sub CountSentence() 'moves thro successive sentences

Dim intCount As Integer
Dim intSentCount As Object

'first-off, move to start of document
Selection.HomeKey Unit:=wdStory, Extend:=wdMove
For Each intSentCount In ActiveDocument.Sentences

Selection.Sentences(1).Next(Unit:=wdSentence, Count:=1).MoveEnd
intCount = intCount + 1
Next
MsgBox "Document has " & intCount & " sentences"

End Sub 'endCountSentence
This seems to give a faily accurate count based on the above 'sentence' deffinitions.


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.