Querying tasks based on note metadata

I am a student and my general workflow for subjects are this:

Every subject is it’s own note, with a set of YAML metadata of which Status: Active/Completed is one of such attributes.

I write tasks for each subject IN each subject note

All subjects notes are outgoing links from my MOC-like education note. It’s in this note i want to query for tasks whitin notes which are active (Status: Active).

How do i do this?

Try using dataview with the following query:

TASK
FROM ""
WHERE contains(Status,"Active")

Embedded search for all tasks:

```query
"Status: Active" /- \[.\]/
```

For only open tasks:

```query
"Status: Active" "- [ ]"
```

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