Excel negation
yur
-
Morgothal Posted messages 1350 Status Member -
Morgothal Posted messages 1350 Status Member -
Bonjour,
please help me to write a formula in Excel that allows me to count the number of cells that do not contain a given character.
=COUNTIFS(Sheet1!C:C,"GIE")
thank you
Configuration: Windows XP / Safari 536.11
please help me to write a formula in Excel that allows me to count the number of cells that do not contain a given character.
=COUNTIFS(Sheet1!C:C,"GIE")
thank you
Configuration: Windows XP / Safari 536.11
2 answers
-
Hello,
this formula should correspond to what you want:
=COUNTA(Sheet1!C:C) -COUNTIF(Sheet1!C:C,"*GIE*")
That is: the number of non-empty cells - the number of cells containing GIE.
Best regards.
--
This guy wasn't very bright, as he was foolish. -
Hello,
Try this one if the cell contains "GIE":=COUNTIF(C:C,"<>*GIE*")