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

Data Analysis

  • How To Remove Duplicates In Excel Column Or Row?
  • How to Create Gantt Chart in Excel
  • How to add Trendline to a chart in Excel
  • Add Outline to Data in Excel
  • How To Create Pareto Chart in Excel

References

  • How to get last row in text data in Excel
  • How to get address of named range in Excel
  • Complete List of Excel Lookup and Reference Functions, References and Examples
  • LOOKUP function: Description, Usage, Syntax, Examples and Explanation
  • Excel Advanced Lookup using Index and Match Functions

Data Validations

  • Excel Data validation date in next 30 days
  • Excel Data validation only dates between
  • Excel Data validation allow uppercase only
  • Excel Data validation whole percentage only
  • Excel Data validation number multiple 100

Count multiple criteria with NOT logic in Excel

by

This tutorial shows how to Count multiple criteria with NOT logic in Excel using the example below;

Formula

=SUMPRODUCT((range1=criteria1)*ISNA(MATCH(range2,criteria2,0)))

Explanation

To count with multiple criteria, including logic for NOT one of several things, you can use the SUMPRODUCT function together with the MATCH and ISNA functions.

In the example shown, the formula in G8 is:

=SUMPRODUCT((gender=F4)*ISNA(MATCH(group,G4:G5,0)))

Where “gender” is the named range C4:C12, and “group” is the named range D4:D12.

Worked Example:   Sum if one criteria multiple columns in Excel

Note: MATCH and ISNA allow the formula to scale easily to handle more exclusions, since you can easily expand the range to include additional “NOT” values.

How this formula works

The first expression inside of SUMPRODUCTS tests values in column C, Gender, against the value in F4, “Male”:

(gender=F4)

The result is an array of TRUE FALSE values like this:

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

Where TRUE corresponds to “Male”.

Worked Example:   Count visible rows only with criteria in Excel

The second expression inside of SUMPRODUCTS tests values in column D, Group, against the values in G4:G5, “A” and “B”. This test is handled with MATCH and ISNA like this:

ISNA(MATCH(group,G4:G5,0))

The MATCH function is used to match every value in the named range “group” against values in G4:G5, “A” and “B”. Where the match succeeds, MATCH returns a number. Where the MATCH fails, MATCH returns #N/A. The result is an array like this:

Worked Example:   3D SUMIF for multiple worksheets in Excel

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

Since #N/A values correspond to “not A or B”, ISNA is used to “reverse” the array to:

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

Now TRUE corresponds to “not A or B”.

Inside SUMPRODUCT, the two array results are multiplied together, which creates a single numeric array inside SUMPRODUCT:

SUMPRODUCT({0;0;1;0;0;1;0;0;0})

SUMPRODUCT then returns the sum, 2, representing “2 males not in group A or B”.

Post navigation

Previous Post:

44 Practical Excel IF function Examples

Next Post:

Large with criteria 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

  • How to use Excel TRUE Function
  • IFNA function: Description, Usage, Syntax, Examples and Explanation
  • Nested IF function example in Excel
  • How to return blank in place of #DIV/0! error in Excel
  • Excel If, Nested If, And/Or Criteria Examples

Date Time

  • HOUR function: Description, Usage, Syntax, Examples and Explanation
  • Series of dates by day
  • How to join date and text together in Excel
  • WEEKDAY function: Description, Usage, Syntax, Examples and Explanation
  • Get project end date in Excel

Grouping

  • Group arbitrary text values in Excel
  • Running count group by n size in Excel
  • Group numbers at uneven intervals in Excel
  • How to randomly assign data to groups in Excel
  • Group times into unequal buckets in Excel

General

  • How to calculate project complete percentage in Excel
  • How to create dynamic named range with INDEX in Excel
  • Basic error trapping example in Excel
  • Subtotal by invoice number in Excel
  • Customize Ribbon In Excel
© 2023 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning