How can I automate a 40-day task list with Obsidian?

Can I automate a 40-day plan, made up of 2 tasks daily, to show up daily as tasks in Obsidian daily starting from a certain date? And when done on each day, I can mark as it done. And the next day it repeats.

Here’s what I’m trying to do:
I want to run a sprint of certain activites. Each day has 2 core activities to be done. Sprint will run for, say, 40 days. I want to be able to see the tasks inside my Daily Notes so it’s where I can easily get it done.

So far, I have created the list of tasks in a single note.

Dataview currently populates all uncompleted tasks in my Daily Notes, which makes it hard to see the specific program. This is what I used to bring all the tasks to my daily note:

```dataview
TASK
FROM "" 
WHERE !completed
AND file.cday >= date(today) - dur(60 days)
SORT file.cday DESC

active Plugins I have installed: daily notes, commander, dataview, journals, quickadd, tag wrangler, templater...

I've tried to check if there are plugins that can help, but not sure yet. I suspect I might need to combine functionalities somehow but I don't know what that is yet.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.