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

Data Analysis

  • Conditional Formatting Data bars Examples in Excel
  • How to calculate average last N values in a table in Excel
  • What-If Analysis: Scenarios and Goal Seek in Excel
  • Number and Text Filters Examples in Excel
  • Conditional Formatting Icon Sets Examples in Excel

References

  • How to get address of named range in Excel
  • Last row number in range
  • Convert text string to valid reference in Excel using Indirect function
  • Left Lookup in Excel
  • Complete List of Excel Lookup and Reference Functions, References and Examples

Data Validations

  • How To Create Drop-down List in Excel
  • Excel Data validation specific characters only
  • Data validation must not exist in list
  • Excel Data validation no punctuation
  • Excel Data validation unique values only

SUMPRODUCT count multiple OR criteria in Excel

by

This tutorial shows how to work SUMPRODUCT count multiple OR criteria in Excel using the example below;

Formula

=SUMPRODUCT(ISNUMBER(MATCH(range1,{"A","B"},0))*ISNUMBER(MATCH(range2,{"X","Y","Z"},0)))

Explanation

To count matching rows with multiple OR criteria, you can use a formula based on the SUMPRODUCT function. In the example shown, the formula in F10 is:

=SUMPRODUCT(ISNUMBER(MATCH(B5:B11,{"A","B"},0))*
ISNUMBER(MATCH(C5:C11,{"X","Y","Z"},0)))

This formula returns a count of rows where column one is A or B and column two is X, Y, or Z.

How this formula works

Working from the inside out, each criteria is applied with a separate ISNUMBER + MATCH construction. To generate a count of rows in column one where the value is A or B we use:

ISNUMBER(MATCH(B5:B11,{"A","B"},0)

MATCH generates a result array that looks like this:

{1;2;#N/A;1;2;1;2}

and ISNUMBER converts this array to this array:

{TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;TRUE}

To generate a count of rows in column two where the value is X, Y, or Z we use:

ISNUMBER(MATCH(C5:C11,{"X","Y","Z"},0))

Then MATCH returns:

{1;2;3;3;#N/A;1;2}

and ISNUMBER converts to:

{TRUE;TRUE;TRUE;TRUE;FALSE;TRUE;TRUE}

These two arrays are multiplied together inside SUMPRODUCT, which automatically converts TRUE FALSE values to 1 and 0 as part of the math operation.

So, to visualize, the final result is derived like this:

=SUMPRODUCT({1;1;0;1;1;1;1}*{1;1;1;1;0;1;1})
=SUMPRODUCT({1;1;0;1;0;1;1})
=5

With cell references

The example above uses hardcoded array constants, but you can also use cell references:

=SUMPRODUCT(ISNUMBER(MATCH(B5:B11,E5:E6,0))*ISNUMBER(MATCH(C5:C11,F5:F7,0)))

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

  • IF function: Description, Usage, Syntax, Examples and Explanation
  • IFERROR function: Description, Usage, Syntax, Examples and Explanation
  • IF, AND, OR and NOT Functions Examples in Excel
  • AND function: Description, Usage, Syntax, Examples and Explanation
  • How to use Excel AND Function

Date Time

  • Get first Monday before any date in Excel
  • Basic Overtime Calculation Formula in Excel
  • Add workdays to date custom weekends in Excel
  • Convert date to Julian format in Excel
  • SECOND function: Description, Usage, Syntax, Examples and Explanation

Grouping

  • Group numbers with VLOOKUP in Excel
  • Map inputs to arbitrary values in Excel
  • Group times into unequal buckets in Excel
  • Running count group by n size in Excel
  • Group numbers at uneven intervals in Excel

General

  • Count cells that do not contain errors in Excel
  • Transpose: Switch ‘Rows to Columns’ or ‘Columns to Rows’ in Excel
  • Advanced Number Formats in Excel
  • Excel Operators
  • Find Most Frequently Occurring Word in Excel Worksheet
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning