I have a list of tasks and a common start date for all tasks. Now, if there is a resource or an engineering dependency , then the subsequent tasks will have to start after the current task ends. I am trying to build this in smartsheets with seven columns
- ID of the task
- Name of the task
- Effort
- Common Start Date
- Depends On (ID): This column will reference any ID in column 1
- Start Date: Calculated
- End Date: Calculated (Start Date + Effort)
For each task/line item, If the "Depends On (ID)" column is empty, then I want to pick the "Common Start Date" for Column 5; else I want to pick the "End Date" of the task that the current task/line item depends on.
I am running into circular reference issues because the End Date is also calculated by adding the start date and effort. Trying to understand if there are better ways to achieving this.
Thanks in advance.