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
- 64K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 137 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!