Count if exclude a column with blanks
I would like to summarize information on how many green "progress" icons we have but exclude those with also a green "state" icon. I tried this but it didn't work:
=COUNTIFS(CAPABILITY:CAPABILITY, CONTAINS("Development", @cell), [Progress Alert]:[Progress Alert], "Green", State:State, NOT(@cell = "Gray"), State:State, NOT(@cell), [Cross Functional Team or Activity]:[Cross Functional Team or Activity], "INTEROPERABILITY")
Any ideas?
Best Answer
-
Here you go...
COUNTIFS(CAPABILITY:CAPABILITY, CONTAINS("Development", @cell), [Progress Alert]:[Progress Alert], "Green", State:State, AND(@cell <> "Gray", @cell <> ""), [Cross Functional Team or Activity]:[Cross Functional Team or Activity], "INTEROPERABILITY")
Answers
-
Try this:
COUNTIFS(CAPABILITY:CAPABILITY, CONTAINS("Development", @cell), [Progress Alert]:[Progress Alert], "Green", State:State, @cell <> "Gray", [Cross Functional Team or Activity]:[Cross Functional Team or Activity], "INTEROPERABILITY")
-
Hi Paul,
Thank you for your response.
I want to exclude rows with state gray or state blank. Does this formula give me that?
-
Here you go...
COUNTIFS(CAPABILITY:CAPABILITY, CONTAINS("Development", @cell), [Progress Alert]:[Progress Alert], "Green", State:State, AND(@cell <> "Gray", @cell <> ""), [Cross Functional Team or Activity]:[Cross Functional Team or Activity], "INTEROPERABILITY")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!