What I’m trying to do
So I want to have quick summary of all the available tags in my vault and number (count) of tags, in one line.
Something like this:
Total Unique Tags (198) | Tags |
---|---|
198 | #programming, #obsidian, dataview, #log, #snippets, #table, #list, #task, linux, macos, api, #blogs, #archive, #python, #ruby, #productivity, #books, #bugs, #documentation, #experimental |
Things I have tried
This gives a list of tags and the number times that tag is used. Now I want to get that list and one count the number of unique tags and then join them to one line.
LIST WITHOUT ID length(rows) + " note(s) with tag " + " " + tgs
FROM "/"
WHERE file.etags
FLATTEN file.etags AS tgs
GROUP BY tgs
SORT length(rows) DESC
I have no idea whether that is possible, I think it. I just hope that I don’t have to use dataviewjs as I’m not at all versed in that.
I searched the forum, but I didn’t find anything close to what I’m trying to do, perhaps I’m bad at describing it in search terms. If this already exists please point me to the post.
Anyway, any help on this would be greatly, appreciated. Thanks.