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.
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
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.
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!
Cross-referencing has long been a capability in Word documents. You can easily add and remove cross-references but ...
Discover MoreWord allows you to add line numbers within a document. However, it does not allow you to reference those line numbers ...
Discover MoreIf you have a word that includes punctuation as part of the word itself, then you may be frustrated by how Word treats ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
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.
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.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2026 Sharon Parq Associates, Inc.
Comments