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

Discovering the RGB Value of a Custom Text Color

Word allows you to easily change the color of the text in your document. If you get a document from someone else, you may ...

Discover More

Deriving High and Low Non-Zero Values

When analyzing your numeric data, you may need to figure out the largest and smallest numbers in a set of values. If you ...

Discover More

Converting Field Results to Text

Fields are meant to be dynamic, providing a result based on conditions at the time they are updated. You may want to ...

Discover More

Learning Made Easy! Quickly teach yourself how to format, publish, and share your content using Word 2021 or Microsoft 365. With Step by Step, you set the pace, building and practicing the skills you need, just when you need them! Check out Microsoft Word Step by Step today!

More WordTips (ribbon)

Correcting Student Papers

If you are a teacher, you may be looking for ways you can use Word's features to correct papers your students send to you ...

Discover More

Word Counts for a Group of Documents

Getting a word count for a single document is easy. Getting an aggregate word count for a large number of documents can ...

Discover More

Mass Search and Replace

If you need to change information in dozens or even hundreds of documents, the task can seem insurmountable. Here's a way ...

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 4 - 2?

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.