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


1

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

Using Custom Number Formats

Most formatting needs are met by using the predefined formatting options in Excel. The program also allows you to move ...

Discover More

Getting a Warning for Markup

Many people, when collaborating on a document with others, use the Track Changes feature to show the effects of their ...

Discover More

Borders Disappear on Shaded Table Rows

When creating a table, it is possible that adding row or cell shading can affect how cell borders are displayed. This ...

Discover More

Create Custom Apps with VBA! Discover how to extend the capabilities of Office 365 applications with VBA programming. Written in clear terms and understandable language, the book includes systematic tutorials and contains both intermediate and advanced content for experienced VB developers. Designed to be comprehensive, the book addresses not just one Office application, but the entire Office suite. Check out Mastering VBA for Microsoft Office 365 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

Cross-Reference to a Line Number

Word allows you to add line numbers within a document. However, it does not allow you to reference those line numbers ...

Discover More

Ignoring Punctuation in Names

If you have a word that includes punctuation as part of the word itself, then you may be frustrated by how Word treats ...

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 9 + 7?

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.