Skip to main content

How to set dates for different checkpoints based on live date

  • May 15, 2023
  • 3 replies
  • 21 views

Forum|alt.badge.img+1

Hi there!

I'm trying to set up an automation that generates dates for each step of our approval process, based on the inputted "Go live" date. For example, if the project needs to go live on 7/29, manager approval should be 3 weeks prior and leadership approval should be 2 weeks prior. Does anyone know how to populate this timeline automatically so we don't have to do the math ourselves and it saves us some time?

Thank you!

3 replies

Forum|alt.badge.img+7

Hi Carly,

One way you can set this up is to create a column that calculates how many days from the go-live date column you are. Create a calculated column called "Countdown to go-live":

 

DATETIME_DIFF({date}, TODAY(), 'days')

Then from there you can base your automation on a # value criteria (e.g. email manager for approval when countdown field is <21 days, <14 days etc.)

 


Forum|alt.badge.img+1
  • Author
  • New Participant
  • May 17, 2023

Thank you! Do you know of a way to make it into a date field as opposed to an automation? We want to have listed dates for each step of approval.


Forum|alt.badge.img+7

If you want a column for each specific date, you can use a formula like this:

DATEADD({go live date},-14,'days')
The example above tells you the date that is 14 days prior to the date in your go live field.