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 Displayed Cells.
Written by Allen Wyatt (last updated January 4, 2025)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021
The filtering capabilities of Excel make it easy to display just the information that you want from a data table. How you use filtering has been discussed in other issues of ExcelTips. Once you've applied a filter to your data, you may want to use a function to display the number of cells that are displayed in a filtered range.
If you just need to quickly know the count, highlight the filtered range, right-click anywhere on the status bar, and choose Count from the resulting Context menu. Excel displays, in the status bar, the number of cells displayed in the range you selected.
If you need a solution that you can use in a formula, you should look towards the SUBTOTAL function. This function provides a number of different "subtotal" results, but it only operates on data that is displayed. This means that the information filtered out by AutoFilter won't count in what SUBTOTAL returns.
The general syntax of the SUBTOTAL function is as follows:
=SUBTOTAL(type,range)
All you need to do is specify a type and a range. The range part should be easy: it is just a standard range. The type specifier can be a number between 1 and 11, as follows:
Type | Function Performed | |
---|---|---|
1 | AVERAGE | |
2 | COUNT | |
3 | COUNTA | |
4 | MAX | |
5 | MIN | |
6 | PRODUCT | |
7 | STDEV | |
8 | STDEVP | |
9 | SUM | |
10 | VAR | |
11 | VARP |
Notice that the type specifier you use indicates what Excel function is applied to the displayed results. Thus, if you want to determine the count of the filtered results in the range of F3:F27, you would use a type specifier of 2, as follows:
=SUBTOTAL(2,F3:F27)
This usage will, of course, count numeric values in the range specified. If you want to count text values, then you should use a type specifier of 3 so that Excel relies on the COUNTA function instead.
You should also know that you can use type specifiers in the range of 101 to 111; they are the same as the specifiers listed above, but only have 100 added to them. The difference is that the values 1 through 11 operate on all cells, whereas the values 101 through 111 operate on only the non-hidden cells.
Finally, you could, if desired, use the AGGREGATE function (available starting in Excel 2010), which is sort of an updated version of SUBTOTAL. For the simple purpose focused on in this tip, though, the SUBTOTAL function is more than sufficient and requires fewer parameters to use.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (10694) 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 Displayed Cells.
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!
The COMBIN function is used to determine the number of combinations that can be made from a group of elements. This tip ...
Discover MoreThe UNIQUE function can be used to evaluate a range and return the unique values in that range. Understanding how the ...
Discover MoreWhen working with finances, you often need to know the rate of return on a given investment. The most common type of ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
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.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments