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
Post a Comment