Forum Discussion
LisaSingleton
Oct 22, 2024Brass Contributor
Count if function
Trying to count all cells in a column that are not "Closed" and also excluding the counting of any blank cells. The below formula gives me a count of over 1 million when it should be 178. =COUNT...
Patrick2788
Oct 22, 2024Silver Contributor
If you're using Excel 365, you could use:
=SUM(N(TOCOL('All Defects'!I:I,1)<>"Closed"))LisaSingleton
Jun 05, 2025Brass Contributor
Hi, How can I add another variable to this formula (i.e. Sum all defects that are "not closed" AND "deferred"? Thanks