COUNTIFS for assigned to CONTAINING a name
I'm trying to total the numbers of active assignments assigned to a person in a cell that can have muliple selections. .... it's not giving me an error but coming back as 0
=COUNTIFS( [Assigned To]:[Assigned To], CONTAINS("name", @cell), Status:Status, <>"completed")
Anyone help!?
Answers
-
Do you allow for multiple contacts in each cell? If not the formula below will work.
=COUNTIFS( [Assigned To]:[Assigned To], "Vanessa Williams", Status:Status, <>"completed")
-
If there are potentially multiple contacts in the individual cell you can use this trick:
=COUNTIFS( [Assigned To]:[Assigned To], CONTAINS("Vanessa Williams", join(@cell)), Status:Status, <>"completed")
-
Yes, I need to allow for multiple contact and count accordingly, even if more than one contact is selected.
-
I have posted a second formula above in the case that there is a requirement for multiple contacts.
-
I wasn't able to get that to work, but this ended up working well:
=COUNTIFS([Primary (Assigned To)]:[Primary (Assigned To)], FIND("vanessa", @cell) > 0, Status:Status, <>"completed")
-
CONTAINS doesn't seem to work for the "Assigned To" Column but find does.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!