As a new user I'm working my way through the Smartsheet product. Thanks to the 'best answer' in this post I was able to calculate the Effort (or Energy), which is visualized by 1 to 5 people-icons; this way Duration can be set or calculated for regular project planning, but in Card View this is automatically shown by an indicator as Effort per task:
1 puppet = more then 0 minutes, but less then 4 hours
2 puppets = 4 hours or more, but less then 1 day
3 puppets = 1 day or more, but less then 3 days
4 puppets = 3 days or more, but less then 5 days
5 puppets = 5 days or more
This is visualized per row within a column called Effort, with a type of Symbols. Now I've choosen for the People (1 - 5 puppets) symbol, but maybe I'll switch to the Levels of Pain (1 - 6) symbol. As I want to work with estimated time per task / user story (input), this Effort is automatically calculated by this formula:
=IF(CALCDURATION(Start2, Finish2) >= ABS(5), "Five", IF(CALCDURATION(Start2, Finish2) >= ABS(3), "Four", IF(CALCDURATION(Start2, Finish2) >= ABS(1), "Three", IF(CALCDURATION(Start2, Finish2) >= ABS(0.5), "Two", IF(CALCDURATION(Start2, Finish2) > ABS(0), "One", "Empty")))))
So far so good...
This hard-coded approach works fine with the default schedule of 8 hours per day and 5 days per week. But, I would like it to be more flexible, so the visualization becomes relative to the available hours (and people) per week for the project. So for this I have two questions:
1) How can I change the formula so it uses a percentage of the default Working Hours available per week?
2) With a possible change to a 'Levels of Pain' indicator; how could the workload be shared by two or more people and let this reduce the percentage for the task?
Maybe you would like to use the approach above as-is, but I hope you also would like to make some suggestions to get this one more flexible. Thanks!
Best regards,
Maik