Help

How to make Weekly Recurring tasks at set Time and Day of Week using Zapier

5026 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Philip_Bassham
6 - Interface Innovator
6 - Interface Innovator

So, I have been trying to find a way to make weekly recurring tasks, and have figured something that works for me.

Basically, just a complicated formula that updates the due date field each week to the same day of the week and time of day.

  1. Make a table that will act as a template for new tasks. This Post got me started.
  2. Make a date field, with the time, that will set the time you want to be your due date each week.
  3. Use this formula below, to make a separate field that will update to that day and time, each week, automatically. (You will need to edit the time zone to match where you are.)

DATETIME_FORMAT(SET_TIMEZONE(DATETIME_PARSE(CONCATENATE(DATETIME_FORMAT(NOW(),‘ww’)," “, DATETIME_FORMAT({due time of week}, ‘ddd’),” ", DATETIME_FORMAT({due time of week}, ‘LT’)),‘ww,ddd,LT’),‘Asia/Bangkok’),‘D/M/YYYY h:mma’)

  1. Then have Zapier trigger each week, and use that new date field as the date when creating the new records.

Optionally, you could have the zap find and reset the due date of the task, and mark it as unfinished, instead of creating a new one.

2 Replies 2
Axel_Persson
4 - Data Explorer
4 - Data Explorer

Hi Philip,

Just wanted to check if you still find this works. I was under the impression NOW() only updated when the base is reloaded, so it would not trigger in the background, right? What is your experience?

I was thinking to use Zapier’s scheduler, but would also like an Airtable-only solution for Slack notifications.

Yeah, it still works for me.

I think the idea is that it isn’t constantly updated by the second, but anytime the formula is calculated, like on the updating or adding of new records, it will calculate based on the current time, so it works.