Excel formula for Beginners – How to Count cells not equal to many things in Excel

 

(Excel examples for Beginners)

In this end-to-end excel example, you will learn – How to Count cells not equal to many things in Excel.

 

How to Count cells not equal to many things in Excel

 Generic formula

=SUMPRODUCT(--(ISNA(MATCH(data,exclude,0))))

Explanation

To count cells not equal to any of many things, you can use a formula based on the MATCH, ISNA, and SUMPRODUCT functions. In the example shown, the formula in cell F5 is:

=SUMPRODUCT(--(ISNA(MATCH(data,exclude,0))))

where “data” is the named range B5:B16 and “exclude” is the named range D5:D7.

How this formula works

First, a little context. Normally, if you have just a couple things you don’t want to count, you can use COUNTIFS like this:

=COUNTIFS(range,"<>apple",range,"<>orange")

But this doesn’t scale very well if you have a list of many things, because you’ll have to add an additional range/criteria pair to for each thing you don’t want to count. It would be a lot easier to build a list and pass in a reference to this list as part of the criteria. That’s exactly what the formula on this page does.

At the core, this formula uses the MATCH function to find cells not equal to “a”,  “b”, or “c” with this expression:

MATCH(data,exclude,0)

Note the lookup value and lookup array are “reversed” from normal configuration — we provide all values from the named range “data” as lookup values, and give all values we want to exclude in the named range “exclude”. Because we give MATCH more than one lookup value, we get more than one result in an array like this:

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

Essentially, MATCH gives us the position of matching values as a number, and returns #N/A for all other values.

The #N/A results are the ones we’re interested in, since they represent values not equal to “a”,  “b”, or “c”. Accordingly, we use ISNA to force these values to TRUE, and the numbers to FALSE:

ISNA(MATCH(data,exclude,0)

Then we use a double negative to coerce TRUE to 1 and FALSE to zero. The resulting array, inside SUMPRODUCT looks like this:

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

With only one array to process, SUMPRODUCT sums and returns a final result, 4.

Note: Using SUMPRODUCT instead of SUM avoids the need to use control + shift + enter.

Count minus match

Another way to count cells not equal to any of several things is to count all values, and subtract matches. You can do this with a formula like this:

=COUNTA(range)-SUMPRODUCT(COUNTIF(range,exclude))

Here, COUNTA returns a count of all non-empty cells. The COUNTIF function, given the named range “exclude” will return three counts, one for each item in the list. SUMPRODUCT adds up the total, and this number is subtracted from the count of all non-empty cells. The final result is the number of cells that do not equal values in “exclude”.

Literal contains type logic

The formula on this page counts with “equals to” logic. If you need to count cells that do not contain many strings, where contains means a string may appear anywhere in a cell, you’ll need a more complex formula.

 

Personal Career & Learning Guide for Data Analyst, Data Engineer and Data Scientist

Applied Machine Learning & Data Science Projects and Coding Recipes for Beginners

A list of FREE programming examples together with eTutorials & eBooks @ SETScholars

95% Discount on “Projects & Recipes, tutorials, ebooks”

Projects and Coding Recipes, eTutorials and eBooks: The best All-in-One resources for Data Analyst, Data Scientist, Machine Learning Engineer and Software Developer

Topics included: Classification, Clustering, Regression, Forecasting, Algorithms, Data Structures, Data Analytics & Data Science, Deep Learning, Machine Learning, Programming Languages and Software Tools & Packages.
(Discount is valid for limited time only)

Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.

Learn by Coding: v-Tutorials on Applied Machine Learning and Data Science for Beginners

Please do not waste your valuable time by watching videos, rather use end-to-end (Python and R) recipes from Professional Data Scientists to practice coding, and land the most demandable jobs in the fields of Predictive analytics & AI (Machine Learning and Data Science).

The objective is to guide the developers & analysts to “Learn how to Code” for Applied AI using end-to-end coding solutions, and unlock the world of opportunities!

 

Excel formula for Beginners – How to Count cells that do not contain specific text in Excel

Excel formula for Beginners – How to Count multiple criteria with NOT logic in Excel

Excel formula for Beginners – How to Count cells equal to something