Help

Re: How to Auto-populate Dates based on +/- Number of Days

Solved
Jump to Solution
1096 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Lindsey_Montoya
4 - Data Explorer
4 - Data Explorer

Hi! I am creating a task list template that has certain tasks that need to be completed 20 days prior to event, 14 days prior to event, 12 days prior to event, 2 days after the event, 7 days after the event, and so on. I’d love to be able to pop in the Event Date and it autopopulate real calendared DUE Dates based on those parameters so that I can use it over and over for each new event without manually typing in each due date for every single task, but am struggling to figure this out. Can someone please assist me? I am new to airtable and watching lots of tutorials!

1 Solution

Accepted Solutions
Kamille_Parks
16 - Uranus
16 - Uranus

You want to create 5 formula fields using the DATEADD() function.

DATEADD({Event Date}, -20, "days")

See Solution in Thread

4 Replies 4
Kamille_Parks
16 - Uranus
16 - Uranus

You want to create 5 formula fields using the DATEADD() function.

DATEADD({Event Date}, -20, "days")

@Kamille_Parks What if we need that end result date to be in working days?

Then use WORKDAY(). I would recommend familiarizing yourself with Airtable’s formula functions:

Thank you. I wasn’t sure if the WORKDAY() formula would be used instead of DATEADD() or in addition to, but I’ll try to work through this myself.