Formula to count exclude a response within a column
I'm trying to create a formula to count the total number of cells within a column with "complete" and "incomplete" excluding the responses with "N/A". I attempted this formula but it did not return the correct value ("Unparseable"): =COUNTIFS([Action Plan Compliance]:[Action Plan Compliance], ="Complete", [Action Plan Compliance]:[Action Plan Compliance], ="Incomplete"). This is a screen shot of the column.
Best Answer
-
Hi @jjluna
The current formula you have is looking for if a cell has both of those options at the same time. Instead, you'll want to have two separate COUNTS and then add them together:
=COUNTIFS() + COUNTIFS()
For example:
=COUNTIFS([Action Plan Compliance]:[Action Plan Compliance], "Complete") + COUNTIFS([Action Plan Compliance]:[Action Plan Compliance], "Incomplete")
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
Answers
-
Hi @jjluna
The current formula you have is looking for if a cell has both of those options at the same time. Instead, you'll want to have two separate COUNTS and then add them together:
=COUNTIFS() + COUNTIFS()
For example:
=COUNTIFS([Action Plan Compliance]:[Action Plan Compliance], "Complete") + COUNTIFS([Action Plan Compliance]:[Action Plan Compliance], "Incomplete")
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
-
Thank you, Genevieve!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!