What I’m trying to do
I’m a new user and I’m trying to create a “Dashboard” of my daily note tag frequency. I’ve got it almost working but I can’t seem to get it to sort in order of most frequent to least frequent. Any help?
TABLE
length(rows.file.name) as numfiles , join(rows.file.link, ", ") as files
FROM
"Daily Notes"
flatten
file.tags as tag
group by
tag
Things I have tried
I’ve tried looking here and on Reddit but didn’t see any answers.