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
- Customer Resources
- 67.1K Get Help
- 450 Global Discussions
- 155 Industry Talk
- 505 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 514 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!