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

Counting Words

Written by Allen Wyatt (last updated November 12, 2022)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021


2

Words are normally associated with a word processor, such as Microsoft Word. However, many people also work with words in their spreadsheet program. (I had a coworker once who used Excel to write memos all the time.) There may be times when you want to count the number of words in a worksheet that you receive from someone. There are native abilities to perform such a task in Word, but not in Excel.

One solution, of course, is to load your workbook into Word, perform the word count there, and then close the file. This is not nearly as flexible, however, as creating a macro to count words within Excel itself. The following macro, CountWords, counts the number of words in any range you select in a worksheet:

Sub CountWords()
    Dim lWords As Long
    Dim Raw As String
    Dim c As Range

    lWords = 0
    For Each c In Selection
        If Not c.HasFormula Then
            ' Get text in cell
            Raw = c.Value
            ' Get rid of extra spaces before, after, and within text
            Raw = Application.Trim(Raw)
            ' Get rid of any manual line breaks
            ' and don't assume that they represent the start
            ' of a new word
            Raw = Replace(Raw, Chr(10), "")
            ' Now count spaces in remaining text
            lWords = lWords + Len(Raw) - Len(Replace(Raw, " ", ""))
            ' Always increment word count if there is something in
            ' the cell. If, however, there is nothing there, then
            ' don't add a word.
            If Len(Raw) > 0 Then lWords = lWords + 1
        End If
    Next c
    MsgBox "There are " & lWords & " words in the selection."
End Sub

Notice that the macro steps through each cell in the range you select. It then ignores any cell that contains a formula. In all other cells it essentially counts the number of spaces in the cell. (One or more spaces are assumed to separate words.) Note, as well, that the Trim worksheet function is used instead of the VBA Trim function. The reason is because the worksheet version gets rid of extra spaces in the middle of the text, whereas the VBA function gets rid of only leading or trailing spaces. The word count is then displayed in a message box for your edification.

The macro is very quick on relatively small ranges. If you pick a large range (such as the entire worksheet), then the macro can take a great deal of time to finish its work. The point of this is to make sure that you only select the actual range you want to analyze before invoking the macro.

Note:

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

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (11748) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021. You can find a version of this tip for the older menu interface of Excel here: Counting Words.

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

Referencing External Cell Colors

If you want to reference cell colors external to your current workbook, there is no way to do it using Excel functions. ...

Discover More

A Fast Find-Next

Tired of the Find and Replace dialog box blocking the view of your worksheet when you are searching for information? Do ...

Discover More

Putting Amounts in Month Columns

Sometimes putting together a formula can be a challenge. Part of the process, though, is examining the data with which ...

Discover More

Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!

More ExcelTips (ribbon)

Moving Cells Using the Mouse

Want to easily move information from one cell to another? A quick way to do it is to simply drag and drop using the mouse.

Discover More

Pasting Leading Zeroes

Paste information into a worksheet, and you may be surprised to see leading zeroes disappear before your eyes. Here's how ...

Discover More

Entering Numbers in Excel

Enter information into a cell, and Excel needs to figure out what type of information it is. Here's how Excel interprets ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, 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 four minus 0?

2022-11-12 11:11:02

J. Woolley

In my previous comment, this part
SUBSTITUTE(A1:A100,CHAR(10)," "&CHAR(10)))
can be simplified as
SUBSTITUTE(A1:A100,CHAR(10)," "))


2022-11-12 11:03:55

J. Woolley

Assuming the text is in cells A1:A100, here's an Excel 365 formula to count words. (Earlier versions of Excel might not include all of these functions.)
=COUNTA(TEXTSPLIT(TEXTJOIN(" ",TRUE,A1:A100),," ",TRUE))
This will only count words separated by spaces; consecutive spaces are treated as one. If a cell contains a line break CHAR(10) without a space, the word count will not be accurate; for that case, here is an alternate formula:
=COUNTA(TEXTSPLIT(TEXTJOIN(" ",TRUE,SUBSTITUTE(A1:A100,CHAR(10)," "&CHAR(10))),," ",TRUE))
If your Excel version includes TEXTJOIN but not TEXTSPLIT, use My Excel Toolbox's SplitText function instead:
=COUNTA(SplitText(TEXTJOIN(" ",TRUE,TRIM(A1:A100))))
=COUNTA(SplitText(TEXTJOIN(" ",TRUE,TRIM(SUBSTITUTE(A1:A100,CHAR(10)," "&CHAR(10))))))
See https://sites.google.com/view/MyExcelToolbox


This Site

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

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, 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.