Hello, I reproduced a TotalFloat error from a larger project using a simpler template sheet. It occurs whenever there are multiple predecessors for a task in a downstream path. I took some screenshots to show what I am describing. Is this user error or some background calculation with the formula?
Formula (Column: Total Float):
=IF([% Complete]@row = 1, 0, IF(COUNT(CHILDREN()) > 0, MIN(CHILDREN()), TOTALFLOAT([Task Name]@row)))
- Screenshot 1: TotalFloat is 6 days for non-critical tasks (2A.1 to 2A.3) and 0 days for critical tasks (3.2). This seems to be functioning great!
- Screenshot 2: Task 3.2 was moved off the critical path. TotalFloat is 0 days for non-critical tasks (2A.1 to 2A.3) and 3 days for the non-critical task (3.2). This is not correctly calculating 2A.1 to 2A.3 but is working great for Task 3.2.
- Screenshot 3: Task 2A.3 added as a predecessor to Task 3.2. TotalFloat is 0 days for non-critical tasks (2A.1 to 2A.3).
- Screenshot 4: Task 2A.3 added as a predecessor to Task 3.2 and Task 3.2 was moved off the critical path. TotalFloat is 0 days for non-critical tasks (2A.1 to 2A.3) and 3 days for the non-critical task (3.2)