How do I count 2023 Q1 items that are not specific request statuses?
Here is my formula:
=COUNTIFS([Plan of Record]:[Plan of Record], FIND("2023", @cell) > 0, [Request Status]:[Request Status], NOT(CONTAINS("Cancelled", @cell), NOT(CONTAINS("Merged", @cell), NOT(CONTAINS("Rejected - Insufficient Value", @cell), NOT(CONTAINS("Rejected - Duplicate", @cell)), [Planned MVP Launch Date]:[Planned MVP Launch Date], AND(@cell >= DATE(2023, 1, 1), @cell < DATE(2023, 4, 1))))))))
Answers
-
Looks like some syntax / parenthesis issues. Try this:
=COUNTIFS([Plan of Record]:[Plan of Record], FIND("2023", @cell) > 0, [Request Status]:[Request Status], AND(NOT(CONTAINS("Cancelled", @cell)), NOT(CONTAINS("Merged", @cell)), NOT(CONTAINS("Rejected - Insufficient Value", @cell)), NOT(CONTAINS("Rejected - Duplicate", @cell))), [Planned MVP Launch Date]:[Planned MVP Launch Date], AND(@cell >= DATE(2023, 1, 1), @cell < DATE(2023, 4, 1)))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 423 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 144 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!