I am trying to count the number of cells that meet two different criteria.
My first formula counts the number of agreement that haven't been signed, but excluding "_signed".
=COUNTIFS({Future Agreements Tracking Range 6}, NOT(CONTAINS("_signed", @cell)))
This works fine
I can also count the number of agreements that are renewals
=COUNTIFS({Future Agreements Tracking Range 1}, "renewal")
However, I would like to count the number of agreements that are not signed and renewals. I have tried the following formula, but it doesn't work. I also want to count the number of rows that meet both criteria.
I have tried the following:
=COUNTIFS({Future Agreements Tracking Range 6}, NOT(CONTAINS("_signed", @cell), {Future Agreements Tracking Range 1}, CONTAINS("Renewal", @cell)))
=COUNTIFS({Future Agreements Tracking Range 6}, NOT(CONTAINS("_signed", @cell)), {Future Agreements Tracking Range 1}, "renewal")
Answers
-
Your first formula has an extra closing parenthesis on the end...
=COUNTIFS({Future Agreements Tracking Range 6}, NOT(CONTAINS("_signed", @cell), {Future Agreements Tracking Range 1}, CONTAINS("Renewal", @cell))
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!