Filter tasks with multiple tags

Hi all,

Do you know how I can filter tasks that include two or more tags?

This query doesn’t work for me:

```tasks
tags includes #tag1 AND #tag2
```

Thanks!

Hello, try to put each filter in query inside brackets like this:

(tag includes #tag1) AND (tag includes #tag2)

Works the same for complex filter combinations, read more here - Combining Filters | Obsidian Tasks (obsidian-tasks-group.github.io)

2 Likes

Thank you for the quick reply. It worked. Although it’s very strange we need to repeat the whole syntax for each tag that we want to include in our query.

Cheers!

1 Like

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