Multiple Contacts and effort total
Hello,
I am tracking tasks with an Assigned To column and Effort column. My original sheet required repeating the same task and assigning to each individual who would perform that task, and then using the Sum(Children()) to get the total effort for all child tasks.
I would like to allow the Assigned To column to use multiple contacts, with effort set to the amount per user, and then sum up the row.
For example
Task | Assigned To | Effort
Task1 | user1, user2, user3 | 1
Task2 | user2, user3 | 2
I would expect the total effort to be (3*1) + (2*2) = 7
I haven't figured out a formula that would give me total effort of child tasks with multiple contacts. Any ideas?
Answers
-
Hi @jwoods
Since your effort is different per-row, the way I would do this is to set up another helper column in order to do the initial calculation of number of users * effort.
In this column I'd use the COUNTM function to identify the number of users selected, then multiply this by the effort. Try this:
=COUNTM([Assigned To]@row) * Effort@row
You can make this a column formula, perhaps wrapping an IFERROR around it:
=IFERROR(COUNTM([Assigned To]@row) * Effort@row, "")
Then in your SUM(CHILDREN()) function you can reference the helper column inside the CHILDREN function so it looks at the actual effort across resources:
=SUM(CHILDREN([Helper Column]@row))
Cheers!
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
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!