Make a query that shows me specific tags

I want to see a query that sow me only the notes that use the tags #Tasks audio
I’m using this query but only show me the notes with #Tasks and audio but not only that have #Tasks and audio

tag: #Tasks #Audio

Not clear what you want and no query to look at, but perhaps one of these will do what you want:

```dataview
TABLE
FROM #Tasks AND #Audio
```

```dataview
TABLE
FROM #Tasks OR #Audio
```
1 Like

I saw this solution in another answer… Thanks!

block: (#Tareas #Audio)
1 Like

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