Dataview Query WHERE task.tags = file.tags

I have a meeting note template that I tag in the YAML depending on what the meeting is about. It’s always just 1 tag.

In this template, I would like to include a dataview that shows the tasks that have this tag in them. Looking through the resources, I would imagine the below would work, but it–nor any variation I have tried–seems to work.

TASK 
WHERE !completed and task.tags = file.tags

any ideas?

thanks,
M

I eventually figured this out:

TASK
WHERE !completed AND any(contains(text,this.file.tags))
SORT file.name ASC

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