Counting Names Based on Two Criteria

Written by Allen Wyatt (last updated May 18, 2019)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and 2021


Rod has a Christmas card list in Excel. (Actually, this question could apply to any greeting card list.) Each name has a unique numeric ID associated with it and is color coded based on whether the name is family, friend, school friend, or work friend. He also has a True/False indicator in a column which indicates whether the person is to receive a card this year. Rod would like to count how many cards fit two criteria: the "gets card" indicator is True, and the ID is 50 or below. Alternatively, he'd like a way to count the number of cards where the "gets card" indicator is True, and the color code is red.

If you only have to get such sub-lists periodically, the easiest and most flexible solution might be to use the filtering capabilities of Excel and then use the SUBTOTAL function to determine the count. You can filter to display rows based upon almost any criteria you want. When the list represents what you want, then you can use a formula such as the following:

=SUBTOTAL(3,B2:B100)

This variation on the SUBTOTAL function returns a count of all displayed rows in the specified range. The key here is that the only rows displayed are those that meet your filtering criteria, so the formula returns the count you want.

There are also formulas that will return the desired information. The COUNTIFS function will look at multiple criteria and return a count based upon the result of the comparisons. For instance, the following formula will provide the number of list members where the "gets card" indicator is True, and the ID is 50 or below:

=COUNTIFS(A2:A100,"<50",B2:B100,TRUE)

The formula only looks at list members in A2:A100, and it assumes that B2:B100 contains the True/False values serving as the "gets card" indicator.

You should remember that the COUNTIFS function was introduced beginning with Excel 2007. If you are creating a workbook that will also be used by those with an older version of Excel, then you may want to use an alternative function to return the count:

=SUMPRODUCT((A2:A100<50)*B2:B100*1)

If you want to take cell color into account in your formulas, then it becomes a bit trickier. You can devise a user-defined function (a macro) that returns cell color and then use that in the formula. (Other issues of ExcelTips have discussed such functions.) An easier way which avoids the macro is to add a column to your data that contains a numeric value indicating which group (family, friend, school friend, or work friend) the individual belongs to. Then you can include the column value in your formulas.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12867) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and 2021.

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

Changing Compression Print Resolution

The resolution at which Word compresses graphics in a document may be bothersome. If it is, your options are very ...

Discover More

Understanding Auditing

Excel provides some great tools that can help you see the relationships between the formulas in your worksheets. These ...

Discover More

Changing Orientation of a Text Box

Want to change how a text box is oriented on the page? You can't do it, but you can adjust the dimensions of the box ...

Discover More

Best-Selling VBA Tutorial for Beginners Take your Excel knowledge to the next level. With a little background in VBA programming, you can go well beyond basic spreadsheets and functions. Use macros to reduce errors, save time, and integrate with other Microsoft applications. Fully updated for the latest version of Office 365. Check out Microsoft 365 Excel VBA Programming For Dummies today!

More ExcelTips (ribbon)

Cell and Name References in COUNTIF

The second parameter of the COUNTIF function is used to specify the criteria to be used when determining what should be ...

Discover More

Activating the Formula Bar with the Keyboard

Hate to take your hands off the keyboard while working on a worksheet? Here's one way to activate the Formula Bar without ...

Discover More

Separating Names into Individual Columns

If you have a list of names in a column, and you want to separate those names into individual cells, there are several ...

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

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 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.