Skip to main content

Hello, How would I calculate a repeating date?


For example the next second Thursday of the month?


Cheers

Hi @Stephen_Reid


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:




  1. Create a field and call it sequence, make it as Autonumber.




  2. Use this formula




DATEADD(DATETIME_PARSE("12 Mar 2020", 'D MMM YYYY'), sequence*28, 'days')


Hope this helps


Reply