Dataview query showing all tags used in weekly note

Hi,

I assume I have a very simple question, but searching the forum did not help me yet. I want to have a dataview query which gives me a list of all the tags (#) used in this note. It is supposed to be used in a template for a weekly file.

My current dataview code is:

LIST
from ""
FLATTEN file.tags as TAGS
GROUP BY TAGS

So, the main issue is that I do not know how to specify the from statement.

Thank you for any help!

You can not put a from and specify the note with a where:

LIST
WHERE file.name = this.file.name
FLATTEN file.tags as TAGS
GROUP BY TAGS

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