Multiple Contacts in a cell
I have a formula that counts how many tickets someone is tagged in, but it does not count the ones that have multiple contacts in one cell. (So it looks like a tech has only 4 tickets when he actually has 7 tickets assigned to him). Is there a formula to use that can reflect all the tickets they have been tagged in with Multiple Contacts in a cell?
Best Answer
-
If you are searching a Contact type column, CONTAINS will not work. You would need to use the FIND function instead.
=COUNTIFS({Maintenance Request Database - Arena Range 2}, FIND("Ryan Kraetsch", @cell) > 0, {Maintenance Request Database - Arena Range 3}, 0)
Answers
-
You can try:
=COUNTIFS({Contact range}, CONTAINS(Name@row, @cell))
where {Contact range} could be the column range such as [Assigned To]:[Assigned To] or referencing a range in another sheet
Name@row references a name in a row or you could just us the persons name "Assignee Name"
I am assuming you will have a sheet with peoples names and a column for how many they are assigned to and it referencing another sheet.
✅Did my post help answer your question or solve your problem? Please help the Community by marking it as the accepted answer/helpful. It will make it easier for others to find a solution or help to answer!
-
This is the formula I have now to reflect how many open tickets each tech has:
=COUNTIFS({Maintenance Request Database - Arena Range 2}, "Ryan Kraetsch", {Maintenance Request Database - Arena Range 3}, 0)
I have this data in a dashboard chart but it does not show all of their tickets because 2 or more techs were assigned that ticket (multiple contacts tagged in one cell).
-
If you are searching a Contact type column, CONTAINS will not work. You would need to use the FIND function instead.
=COUNTIFS({Maintenance Request Database - Arena Range 2}, FIND("Ryan Kraetsch", @cell) > 0, {Maintenance Request Database - Arena Range 3}, 0)
-
Thank you so much for your help!!
-
Happy to help! 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!