Countif checkbox not checked and frequency is not adhoc request or upon request.
I'm having trouble with a countif formula returning unparsable. I working with a metric sheet that counts tasks on another sheet where an Adhoc Request checkbox is not checked, and the task in the other sheet also has a frequency (dropdown list) that IS NOT "adhoc request" or "upon request". What am I missing here.
=COUNTIF({Analyst Request Tracker with Form Range 7}, Category60, =0), + NOT(COUNTIF({Analyst Request Tracker with Form Range 6-Frequency}, "Adhoc Request")) +NOT(COUNTIF({Analyst Request Tracker with Form Range 6-Frequency}, "Upon Request"))
Answers
-
Hi!
I believe the issue is your hard coded Category60 and the syntax of the NOTs. If you are trying to have a single count value for a list of requests where the specified checkbox is unchecked and the Frequency is not Adhoc or Upon Request I would try:
=COUNTIFS(B@row, 0, C@row, AND(NOT(HAS("Adhoc Request", @cell)), NOT(HAS("Upon Request", @cell))))
-
Thanks for the idea, unfortunate it did not work.
-
=COUNTIFS({Analyst Request Tracker with Form Range 7},false,{Analyst Request Tracker with Form Range 6-Frequency},AND(NOT(HAS(@cell,"Adhoc Request")),NOT(HAS(@cell,"Upon Request"))))
@kira11 your HAS arguments were reversed…HAS and CONTAINS have opposite formats which annoys me to no end!
-
@Brian_Richardson "HAS and CONTAINS have opposite formats which annoys me to no end!"
ALL THE TIME!!! Ugh.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 422 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!