=COUNTIFS({PDCA Range 2}, "Production", {PDCA Range 1}, NOT(FIND("OK 3")))

Count if PDCA range 1 does not have OK 3
Best Answer
-
The FIND function actually outputs a number as opposed to a true/false. This means the NOT function won't work. Want you want is to say if the result of the FIND function equals zero (meaning not found).
=COUNTIFS({PDCA Range 2}, "Production", {PDCA Range 1}, FIND("OK 3", @cell) = 0)
Answers
-
The FIND function actually outputs a number as opposed to a true/false. This means the NOT function won't work. Want you want is to say if the result of the FIND function equals zero (meaning not found).
=COUNTIFS({PDCA Range 2}, "Production", {PDCA Range 1}, FIND("OK 3", @cell) = 0)
-
That worked...but now I am having a problem with it not counting Brian_Borders@na.honda.com in drop downs with multiple selections. It is only counting it when its the only thing selected. Formula =COUNTIFS({PDCA Range 4}, "Brian_Borders@na.honda.com", {PDCA Range 1}, FIND("OK 3", @cell) = 0).
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 517 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!