Multiple Select Contact Column/Sheet Summary
I'm looking for a formula that I can use in Sheet Summary to identify individuals assigned to the same task via a multiple select contact column. The below is what I currently use to track daily tasks for individuals.
Target Tasks
=COUNTIFS([Due Date]:[Due Date], =TODAY(), [Critical Ops.]:[Critical Ops.], ="Yes", Personnel:Personnel, "Employee 1")
Completed Tasks
=COUNTIFS([Completion Date]:[Completion Date], =TODAY(), Status:Status, ="Yes", Personnel:Personnel, "Employee 1")
So, as stated, the issue is this wouldn't count tasks with multiple contacts in the same cell, and I'd prefer to keep it as a contact column if possible so i can then begin creating Workflows for each employee assigned.
Best Answer
-
Use the has function. See below:
=COUNTIFS([Due Date]:[Due Date], =TODAY(), [Critical Ops.]:[Critical Ops.], ="Yes", Personnel:Personnel, HAS(@cell, "Employee 1"))
=COUNTIFS([Completion Date]:[Completion Date], =TODAY(), Status:Status, ="Yes", Personnel:Personnel, HAS(@cell, "Employee 1"))
Answers
-
Use the has function. See below:
=COUNTIFS([Due Date]:[Due Date], =TODAY(), [Critical Ops.]:[Critical Ops.], ="Yes", Personnel:Personnel, HAS(@cell, "Employee 1"))
=COUNTIFS([Completion Date]:[Completion Date], =TODAY(), Status:Status, ="Yes", Personnel:Personnel, HAS(@cell, "Employee 1"))
-
Thank you, it worked like a charm, I must have been putting the HAS function in the wrong place in my original tests.
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 137 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives