Automating Repetitive Daily Tasks on Glide

Hello Glide Community,

I am in the process of creating a simple to-do list app on Glide and need some guidance on tracking repetitive daily tasks. Specifically, I want to ensure that once a task is marked as “done” (checked), it reappears the next day as an unchecked (empty) task.

My inquiry is:

  1. Is creating this functionality a matter of setting up a custom action?
  2. Should this be handled with query columns, or is there another method to achieve this?

To summarize, I need a way to automate the reset of the task status each day. When the status (boolean) is checked today, the same task should automatically appear the next day with the status (boolean) unchecked.

Any advice or guidance on how to implement this would be greatly appreciated.

Thank you!

First I would avoid using a checkbox or switch to mark something as complete. Use a button or something else that allows for an action to be called. With a button, for example, you can have it set the current date into the task row. If the date is within today, then it’s complete. Else the task is not complete.

4 Likes