Help

A simple, self-updating, recurring task list

4859 2
cancel
Showing results for 
Search instead for 
Did you mean: 
JonathanB
8 - Airtable Astronomer
8 - Airtable Astronomer

Hi everyone. It just occurred to me that you could use a formula and a couple of automations to make yourself a simple recurring tasks list. All you need is a date field to set the initial due date of your task, a checkbox field for when you mark the task as “Done” and a formula field that adds a specified length of time to the due date using DATEADD when “Done” is ticked. Then your automation will take the date generated in the formula field and replace the original date in {Due date}. A second automation then takes a last modified field set to monitor when “Done” was ticked, and a formula that shows how much time has passed since “Done” was last ticked, and unchecks “Done” after that length of time has passed (I set this to 2 minutes, i.e. 120 seconds). This final step is to ensure the two automations do not interrupt each other (so to speak). Here’s the full set up…

Fields

{Name} - Primary field, single line text. The name of your task.
{Due date} - Date field, indicating when you want the task next to be completed.
{Done} - Checkbox field
{Next due} - Formula field, using IF({Done}=1, DATEADD({Due date}, 4, "weeks"))
{Last marked done} - Last modified field, set to monitor just when {Done} is modified (i.e. ticked)
{Seconds since marked done} - Formula field, using DATETIME_DIFF(NOW(), {Last marked done})

Automations

  1. “Update due date when task complete”.

Trigger: When record matches conditions - {Next due} is not empty:
image

Action: Update record - Record ID: Airtable record ID; Due date: {Next due}:
image

  1. “Uncheck “Done” after 2 minutes”

Trigger: When record matches conditions - {Done} is checked and {Seconds since marked done} > 120
image

Action: Update record - Record ID: Airtable record ID; {Done} = 0
image

The formula in {Next due} can be amended as you see fit (e.g. to 1 week for weekly tasks) and I did toy with the idea of having the {Done} field be a single select with options e.g. 1 week, 2 weeks etc, such that {Next due} would be a nested IF formula that used DATEADD accordingly to set different dates depending on the option selected, which I think would probably work but was more complicated that I needed here.

The idea is that there are various tasks I have to complete once a month, but don’t always do so on their exact due date, which can lead to them getting missed. Using this table, your tasks will be updated to recurring 4 weeks after you actually do them (which may differ from when you should have done them!)

Couldn’t find much on the forums recently about this topic, so hopefully someone out there will find this useful.

2 Replies 2
Tiffany_Oda
4 - Data Explorer
4 - Data Explorer

Thanks for sharing! So in this example, a new line item won’t be created based off of the creation, but rather the existing line item is “reset”, right? It just unchecks the “Done” box and then changes the date for the next time the task is set to repeat?

I’m trying to find out how to create new recurring rows.

So in this example, a new line item won’t be created based off of the creation, but rather the existing line item is “reset”, right?

That’s correct. Here’s how to do that: How to Make a Recurring Task List in #Airtable - YouTube