Multiple Contains
I am trying to create a formula that counts the amount of instances that meet multiple criteria.
I want to count instances where the Created Date is older than two days ago, the "Service Requested" is Check-In (This is a multi check box), the Branch is Innisfil, ON and the Ticket Status is either Not Started OR Assigned
Current formula:
=COUNTIFS({Service}, $[Primary Column]$22, {Branch}, [Primary Column]@row, {Created Date}, <$Today$1, {Ticket Status}, CONTAINS($[Primary Column]$28, @cell))
Best Answer
-
Your criteria seems offs from what you're looking for.
=COUNTIFS({Service}, HAS(@cell, "Check In"), {Branch}, "Innisfil, ON", {Created Date}, <TODAY(-2), {Ticket Status}, OR(@cell = "Not Started", @cell="Assigned"))
Should be good.
Answers
-
Your criteria seems offs from what you're looking for.
=COUNTIFS({Service}, HAS(@cell, "Check In"), {Branch}, "Innisfil, ON", {Created Date}, <TODAY(-2), {Ticket Status}, OR(@cell = "Not Started", @cell="Assigned"))
Should be good.
-
Perfect, thanks @David Joyeuse
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 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!