Help

Find Date X Works Days Before/After

Topic Labels: Dates & Timezones
907 4
cancel
Showing results for 
Search instead for 
Did you mean: 
Greg_Wasserstro
4 - Data Explorer
4 - Data Explorer

Hi,

In a base, I have a column called {Launch Date}. I would like create a new column that contains the date X work days before {Launch Date}. I do not know this date in advance and want this new column to generate it!

Thanks!

4 Replies 4
Julian_E_Post
8 - Airtable Astronomer
8 - Airtable Astronomer

Hi Greg!
You can achieve this by using a formula field with the Datetime_Diff function. Here’s documentation on how to use it: https://support.airtable.com/hc/en-us/articles/226061308-Supported-unit-specifiers-for-DATETIME-DIFF

LMK if you run into any challenges setting this up

You actually don’t want the DATETIME_DIFF() function as suggested by @Julian_E_Post.

You would accomplish this with a Formula field using WORKDAY({Launch Date}, -x), where “x” equals the number of days. The subtraction symbol ensures the formula gives you that number of workdays before x as opposed to after it.

Good point @Kamille_Parks !

Greg_Wasserstro
4 - Data Explorer
4 - Data Explorer

Thank you! I appreciate it!