Dataview Plugin Table show's the code too

Problem

I’ve followed this guide. As you can see in the picture. The dataview plugin code is also showing up in the table.

That is your template file. You will need to have Dataview exclude it. The following is a Dataview query from my vault. The where line excludes any file with the word Template in the title.

```dataview
TABLE
	Usage AS "Usage"
FROM #Usage
WHERE !contains(file.name,"Template")
SORT Usage ASC
```

You should do something similar to have the first card not visible.

It works. Thank you.

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