Mar 18, 2021 10:24 PM
I am trying to build a Project Plan and Gantt Chart and I am entering a duration for each record + a start date. How can the end date be automatically calculated? Also, If I change the duration time for a record, the end date needs to reflect that change. Thank you
Mar 19, 2021 03:12 AM
Hi @Celine_Derai - there’s a few ways to do this depending upon the result you want.
The formula is:
DATEADD(Start, Duration, 'days')
This might not work well in a working context as it ignores weekends, so your end date might end on a weekend of the task might cross a weekend and these days are included in your duration - not great if your team does not work at weekends.
2, WORKDAY - this is great for taking account of weekends:
The formula here is:
WORKDAY(Start, Duration)
But this has a wrinkle you might need to think about. WORKDAY “Returns a date that is numDays working days after startDate”. Look at this example:
The task starts on Wed 17th and is 3 days, which to me means it could be completed by the end of Friday. But Airtable calculates this a 3 days after 17th, so 18th, 19th, (off for 2 days), 22nd.
To get around this, just minus 1 from the duration in the formula (not in the duration field):
WORKDAY(Start, Duration - 1)
More info on date formulas here
Mar 19, 2021 08:56 AM