May 04, 2023 09:38 AM - edited May 04, 2023 10:13 AM
I'm hoping someone can help me with a date formula and how to implement it.
I've got a project plan (with dependencies) and I've got three fields, "start date" "end date" and duration.
I'm completely lost on how to achieve this. Any help you can offer is much appreciated.
Thanks.
May 10, 2023 08:44 PM
I think you will want to add a lookup of the end date of the blocking task. Then on the start date add a formula to calculate that. You can then setup an automation to update records linked to another record when that record is marked as completed, having the same automation update the end date. You can use the workday formula to bring in the calculation and use the days needed to calculate the start and end days.
May 15, 2023 03:55 PM
Thanks for the reply, @joshsorenson
I have the following formula that seems to be working to calculate the date from the start date + duration
IF({Start},DATETIME_FORMAT(DATEADD(Start, {Duration In Days}, "days"),'MM/DD/YYYY'),"")
I'm not updating on completion date (based on checking off that the task is complete) yet but that seems pretty doable.
The challenge I'm having right now is that using that formula above, I cannot make that field my end date in the Gantt chart. It says the field isn't a date. I would have thought the DATETIME_FORMAT would have done that.
Thoughts?
May 17, 2023 11:02 AM
Figured this one out by using DATETIME_PARSE