Can I do a count formula to say 'count if does not contain'? Many thanks Eán
M Mike H Sep 15, 2009 #2 Hi, Like this =COUNTIF(A1:A20,"<>Something") Change something to whatever you want same for checking numbers in a range =COUNTIF(A1:A20,"<>2") mike
Hi, Like this =COUNTIF(A1:A20,"<>Something") Change something to whatever you want same for checking numbers in a range =COUNTIF(A1:A20,"<>2") mike
J Jacob Skaria Sep 15, 2009 #3 'If you mean a value; =COUNTIF(A1:A10,"<>5") =COUNTIF(A1:A10,"<>YES") 'If you mean blank =COUNTBLANK(A1:A10) If this post helps click Yes
'If you mean a value; =COUNTIF(A1:A10,"<>5") =COUNTIF(A1:A10,"<>YES") 'If you mean blank =COUNTBLANK(A1:A10) If this post helps click Yes
P p45cal Sep 15, 2009 #4 Eán;488808 said: Can I do a count formula to say 'count if does not contain'? Many thanks Eán Click to expand... Well I took 'contain' literally, so looked for a string withi strings. Case Sensitive: =SUMPRODUCT(--(ISERROR(FIND("Get",C12:C18)))) Case insensitive: =SUMPRODUCT(--(ISERROR(SEARCH("Get",C12:C18)))
Eán;488808 said: Can I do a count formula to say 'count if does not contain'? Many thanks Eán Click to expand... Well I took 'contain' literally, so looked for a string withi strings. Case Sensitive: =SUMPRODUCT(--(ISERROR(FIND("Get",C12:C18)))) Case insensitive: =SUMPRODUCT(--(ISERROR(SEARCH("Get",C12:C18)))
J Jacob Skaria Sep 15, 2009 #5 You can use COUNTIF() itself as; =COUNTIF(A:A,"<>*YES*") If this post helps click Yes
P p45cal Sep 15, 2009 #6 Jacob said: You can use COUNTIF() itself as; =COUNTIF(A:A,"<>*YES*") If this post helps click Yes Click to expand... Excellent! Can it be made case sensitive
Jacob said: You can use COUNTIF() itself as; =COUNTIF(A:A,"<>*YES*") If this post helps click Yes Click to expand... Excellent! Can it be made case sensitive
T T. Valko Sep 15, 2009 #7 =COUNTIF(A:A said: Can it be made case sensitive? Click to expand... No, COUNTIF is not case sensitive.
=COUNTIF(A:A said: Can it be made case sensitive? Click to expand... No, COUNTIF is not case sensitive.