Counting within Criteria

Written by Allen Wyatt (last updated September 1, 2018)
This tip applies to Excel 97, 2000, 2002, and 2003


There may be times when you need to count the number of cells in a range which fit a specific criteria. For instance, you may want to know how many cells in a range are over a specific threshold. The natural worksheet function to do this task is COUNTIF. As an example, you may want to know how many cells in the range of A1 through C15 contain a value of 120 or more. The following formula provides the proper count:

=COUNTIF(A1:C15,">119")

The only problem is if you want to add a second criterion to the formula. COUNTIF does not allow you to specify multiple criteria, so you need to resort to formula that is a bit more complex. For instance, if you wanted to know how many cells in the range of A1 through C15 contain a value between 120 and 129, inclusive, you could use the following:

=COUNTIF(A1:C15,">119")-COUNTIF(A1:C15,"<130")

This formula first calculates the number of cells with values at 120 or above and then subtracts the number of cells with values of 129 or below. Astute readers will see an immediate problem with this formula, however—it delivers an erroneous result if there are any cells in the range below 120. They are not counted by the first part of the formula, but they are counted in the result by the second part of the formula. To fix this problem the formula should instead appear as follows:

=COUNT(A1:C15)-COUNTIF(A1:C15,">119")-COUNTIF(A1:C15,"<130")

Another way to solve this problem without using the COUNT function is to simply count the cells that contain a value of less than 130 and then subtract the cells that contain a value of less than 120. This formula gives the same result as the last one:

=COUNTIF(A1:C15,"<130")-COUNTIF(A1:C15,"<120")

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2166) applies to Microsoft Excel 97, 2000, 2002, and 2003.

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

Ctrl+V Pasting is Flakey

When you copy and paste a formula, you usually want to see the formula where you pasted. If you don't get the formula, ...

Discover More

Unlinking an Excel Chart Automatically

When Excel charts are linked in a Word document, they update every time the document is opened. Here's how to unlink the ...

Discover More

Preventing Someone from Recreating a Protected Worksheet

When you share a protected workbook with other people, you may not want them to get around the protection by creating a ...

Discover More

Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2013 For Dummies today!

More ExcelTips (menu)

Using the FORECAST Function

Excel provides a handy worksheet function that allows you to forecast values based upon a set of known values. This ...

Discover More

Finding the Lowest Numbers

Need to find the lowest numbers in a range of values? It's easy to do using the SMALL worksheet function, or you can use ...

Discover More

Using GEOMEAN with a Large List

When performing a statistical analysis on a large dataset, you may want to use GEOMEAN to figure out the geometric mean ...

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 3 - 0?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon 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.