Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • Conditional Formatting Rules in Excel
  • How to Sort by Color in Excel
  • Get column index in Excel Table
  • How to Create One and Two Variable Data Tables in Excel
  • Excel Frequency Function Example

References

  • Perform case-sensitive Lookup in Excel
  • How to use Excel FORMULATEXT function
  • How to retrieve first match between two ranges in Excel
  • Count rows that contain specific values in Excel
  • How to get relative column numbers in a range in Excel

Data Validations

  • Excel Data validation whole percentage only
  • Excel Data validation must not contain
  • Excel Data validation allow uppercase only
  • Excel Data validation number multiple 100
  • Excel Data validation must contain specific text

Count cells equal to one of many things

by

This tutorial shows how to Count cells equal to one of many things using the example below;

Formula

=SUMPRODUCT(COUNTIF(range,things))

Explanation

To count the number of cells equal to one of many values, you can use the COUNTIF function inside of SUMPRODUCT.

In the example shown, cell G5 contains this formula:

=SUMPRODUCT(COUNTIF(B5:B10,things))

Note COUNTIF is not case-sensitive.

How this formula works

COUNTIF counts the number of cells in the range that meet the criteria you supply. When you give COUNTIF a range of cells as the criteria, it returns an array of numbers as the result, where each number represents the count of one thing in the range. In this case, the named range “things” (D5:D7) contains 3 values, so COUNTIF returns 3 results in an array like:

=SUMPRODUCT({1;1;1})

since the values “yellow”, “green”, and “dog” all appear once in the range B5:B10. To handle this array, we use the SUMPRODUCT function, which is designed to work with arrays. SUMPRODUCT simply sums up the items in the array and returns the result, 3.

With array constant

With a limited number of values, you can use an array constant in your formula with SUM, like this:

=SUM(COUNTIF(B5:B10,{"red","green","blue"}))

But if you use cell references in the criteria. you’ll need to enter as an array formula or switch to SUMPRODUCT.

Post navigation

Previous Post:

How to use Excel CHOOSE Function

Next Post:

Customize Ribbon In Excel

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • SWITCH function: Description, Usage, Syntax, Examples and Explanation
  • How to use Excel AND Function
  • TRUE function: Description, Usage, Syntax, Examples and Explanation
  • How to use Excel XOR Function
  • How to return blank in place of #DIV/0! error in Excel

Date Time

  • Get days, hours, and minutes between dates in Excel
  • Convert text timestamp into time in Excel
  • Basic timesheet formula with breaks in Excel
  • Display Days in month in Excel
  • Calculate years between dates in Excel

Grouping

  • Categorize text with keywords in Excel
  • Map text to numbers in Excel
  • Group times into unequal buckets in Excel
  • Group numbers with VLOOKUP in Excel
  • Map inputs to arbitrary values in Excel

General

  • How to generate random times at specific intervals in Excel
  • How to set or clear a print area in Excel Worksheet
  • How to add sequential row numbers to a set of data in Excel
  • Excel Operators
  • How to create dynamic named range with INDEX in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning