Forum Discussion
LisaSingleton
Oct 22, 2024Copper 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"))
- LisaSingletonJun 05, 2025Copper Contributor
Hi, How can I add another variable to this formula (i.e. Sum all defects that are "not closed" AND "deferred"? Thanks
- LisaSingletonOct 22, 2024Copper ContributorThis worked perfectly! Thanks
- Patrick2788Oct 22, 2024Silver ContributorGlad I could help. You're welcome!
- LisaSingletonOct 23, 2024Copper Contributorfor some reason, this count using the below formula is one more than when i filter on the column.
=SUM(N(TOCOL('All Defects'!I:I,1)<>"Closed")). This count is 173 when the actual count is 172. Any idea of what could be contributing to this? Thanks