Querying a single tag from a file with Multiple tags using Dataview

After digging a bit more I found a solution in another post

You can define the file like this:

Video in Progress2.md
---
type: "video"
status: "inProgress"
tags: ["Personal Growth", "Time Management", "Clutter-fighting"]
---
Lorem Ipsum dolor sit amet

Notice the brackets

And only then this search will work:

```dataview
TABLE type
FROM "Aux/DataView/Files2"
WHERE contains(tags, "Time Management")
```
3 Likes