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
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!