Welcome to the Airtable Community! If you're new here, check out our Getting Started area to get the most out of your community experience.
Mar 14, 2020 11:27 PM
Hello, How would I calculate a repeating date?
For example the next second Thursday of the month?
Cheers
Mar 16, 2020 10:56 PM
Welcome to Airtable Community !
Im not sure where you exactly want to add it. But you can use the formula DATEADD(date, 28, ‘days’) to calculate this date from another Thursday. (the is in case you have another date in another field that is actually a 2nd Thursday of the month).
If for example you want to add this in one field without another field having the date, you can do the following:
Create a field and call it sequence, make it as Autonumber.
Use this formula
DATEADD(DATETIME_PARSE("12 Mar 2020", 'D MMM YYYY'), sequence*28, 'days')
Hope this helps