Sep 21, 2023 12:23 PM
Using the "created_at" field, I need a new date field (due_date) that takes created_at and adds x number of days.
It's easy to do this with a formula field, and I have that set up already.
However, I also need the flexibility of being able to manually overwrite the due_date if necessary. Forumla fields can not be edited.
How can I benefit from the efficiency of auto-calculating a due date + the flexibility of manually adjusting if necessary?
Thanks!
Sep 21, 2023 05:18 PM - edited Sep 21, 2023 07:27 PM
I’ve done this in the past by creating a regular date field and then incorporating the created_at into a formula field that evaluates whether the regular date field is filled or not. If the regular date field is filled, then you add days (or whatever) onto that date. If it’s not filled, then you add days (or whatever) onto the created_at date.
If you want to have a created_at field, then just create another regular date field and call it Overwrite Due Date (or whatever) and then change your formula so that
IF({Overwrite Due Date}, overwrite due date, date_add(created_at date, x, ‘days’))
Am on mobile and just couldn’t manage to write the syntax correctly - I hope you get what I mean!
Sep 21, 2023 06:11 PM
Another approach is to
Use a date field and an auto-calculated date, and only update the result of the auto-calculation to the date field in automation if the condition is met.