excel - Count number of rows where value in a column is not a part of a list -


i have data set, let's this:

item name

apple

carrot

carrot

pear

pear

pineapple

radish

orange

orange

pineapple

pineapple

and have list this:

list of items:

apple

orange

pineapple

how write formula count how many rows in dataset have value not part of list? ... in case 5...

you take number in list away total:-

=counta($a$2:$a$20)-sumproduct(countif($a$2:$a$20,$b$2:$b$20)) 

assuming data items in column , list in column b.


Comments

Popular posts from this blog

PHP while loop dynamic rowspan -

android - How to read a column value in parse.com without accessing an object or a pointer -

timer - Java TimerTask cancel -