Upcoming database upgrades. Airtable functionality will be reduced for ~15 minutes at 06:00 UTC on Feb. 4 / 10:00 pm PT on Feb. 3. Learn more here
Jun 11, 2022 07:51 AM
Hi - I’m trying to set a due date that is two weeks out from a publish date on the nearest Thursday. Essentially, everything that is set to be published in week 25, should be due the Thursday of week 23. Does anyone have any hot tips on how to formulate this one?
Jun 11, 2022 09:41 AM
Hi and welcome @Joan_Born!
This should work for you
IF(
{Date field},
DATEADD(DATEADD({Date field},-2,'weeks'),4-WEEKDAY({Date field}),'days')
)