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.
=COUNTIF('All Defects'!I:I,"<>Closed")
- Patrick2788Silver Contributor
If you're using Excel 365, you could use:
=SUM(N(TOCOL('All Defects'!I:I,1)<>"Closed"))
- LisaSingletonBrass ContributorThis worked perfectly! Thanks
- Patrick2788Silver ContributorGlad I could help. You're welcome!