I am trying to construct a Dataview table from a specific folder to show in the columns which files correspond to the table headings. The headings are based on tags.
Things I have tried
Here’s my attempt. It does parse, but it doesn’t show notes based on whether they have a tag or not. It shows files which are sorted in date order and every tag is in the table.
```dataview
TABLE
"#draft" AS "Draft",
"#editing" AS "Editing",
"#incomplete" AS "Incomplete",
"#published" AS "Published"
FROM "@FAITH-FRAGMENTS"
WHERE type= "#draft" OR "#editing" or "#incomplete" OR "#published"
SORT file.mtime DESC
LIMIT 10
```
Clearly the WHERE expression and fields are wrong. And I can kind of see why, but I can’t work out how to get what I want.
You’re still not presenting a typical part of a file , with explanations on what you expect. The wrong output is not helpful as it only displays the literal values from your query.
You’ll most likely need to check the file.etags or fike.tags using one of the contains() methods, but this a somewhat basic query so there are plenty of examples in this forum on how to do this.