Assistance with an AND formula
I'm trying to use COUNTIFS - I have a column with multiple items and only want Client Success to be counted; the item also has to be In Progress; the below schema is not working:
=COUNTIFS({Small}, HAS(@cell "Client Success" ), AND({Status2} = "In Progress"))
Any help is appreciated.
Best Answer
-
The countifs function acts like an "and" formula, so there's no need for an AND in your formula.
If the column that has "Client Success" will only have a single value in any given cell, then you can use this:
=COUNTIFS({OtherSheet_ColumnToCount}, "Client Success", {OhterSheet_Status}, "In Progress")
If the column that has "Client Success" might multiple values in a given cell (e.g., Client Success and Client Goodwill), then you can use this:
=COUNTIFS({OtherSheet_ColumnToCount}, CONTAINS("Client Success", @cell), {OtherSheet_Status}, "In Progress")
Hope this helps!
Answers
-
The countifs function acts like an "and" formula, so there's no need for an AND in your formula.
If the column that has "Client Success" will only have a single value in any given cell, then you can use this:
=COUNTIFS({OtherSheet_ColumnToCount}, "Client Success", {OhterSheet_Status}, "In Progress")
If the column that has "Client Success" might multiple values in a given cell (e.g., Client Success and Client Goodwill), then you can use this:
=COUNTIFS({OtherSheet_ColumnToCount}, CONTAINS("Client Success", @cell), {OtherSheet_Status}, "In Progress")
Hope this helps!
-
Thank you!! That works perfectly - greatly appreciate your prompt assistance!
-
@tina_ajuria24 Happy to help!! 😊
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!