Hi all,
I have implemented a progress feature for my team where the progress of a task is shown according to the % completion of the related sub-tasks. This feature uses 4 custom fields:
- subtask: should be populated with a ‘1’ for all sub-tasks of a parent task
- completed: should be populated with a ‘1’ when a sub-task is completed
- % progress: calculates the percentage progress by: SUM(completed) / SUM(subtask) * 100
- progress: visual progress bar that uses the % progress formula custom field
This feature works great when I add the custom fields and the rule ‘when task is completed set completed to ‘1’’ through a bundle. However, the following rule does not seem to work when added to a project via a bundle, and only works when I manually add it to a project:
- When % progress less than 20% set progress to:
- When % progress >= 20 and <40% set progress to:
- etc…
Has anyone got any idea what a workaround could be for this problem as I want to avoid having to add this multi-condition rule to all 197 projects we have?