List of notes according to TAG

Hi

I have a set of notes with TAG

What I’m trying to do

I am looking for a list or table (dataview) where all the notes are well strcutured according to the TAG. I want only one time the TAG then all the notes related to.

Things I have tried

TABLE WITHOUT ID
rows.file.link AS "Notes"
FROM ""
WHERE file.tags
FLATTEN file.tags AS tag
GROUP BY tag AS "Nom du Tag"
SORT tag

But the result is just the note well structured but wihtout the TAG (no label)

Thank you
Michel

Delete “WITHOUT ID”.

WITHOUT ID tells your table to hide the main column, which in your case is the thing you grouped by: your tags.

1 Like

Thank you !!!