Workflow advice for a better Overview - List notes and filtered tasks together

Since you only the first uncompleted task from any given file, you should be able to do something like:

```dataview
TABLE WITHOUT ID file.link, nextTask.text
FROM "Episodes"
WHERE file.tasks and !completed
FLATTEN filter(file.tasks, (t) => !t.completed)[0] as nextTask
```

Sadly, this is still a table query, and not a task query so you can’t actually complete any of these tasks, but it should give you an overview as to what’s the next task in any given file.

Some random tasks

Check out the answer below which showcases one option to randomly sort a group of tasks and then presenting only the first few tasks. Variation over this theme should answer you question on finding some #small task to complete on your daily note.

The thread above also discusses why this particular solution maybe not the best solution, as it’ll change the tasks when the note reruns its queries. Another option could have been to use Templater to insert the tasks, like in this thread:

However, this duplicates the tasks, and is more useful for citing quotes or repeating a task.

In other words, until my new seeded random function is implemented in a future dataview version (I’ve written the Pull Request already), you’re best best is most likely to use some of the last variants which changes slowly at the end of that first thread.