I’m making a list of notes with certain tags in my vault using Dataview inline query
$=dv.pages("#tag").length
which gives the count of all notes in my vault with #tag, but, I want to exclude the notes in my “Templates” folder.
$=dv.pages('-"Templates"').length
This gives the count of all notes in my vault excluding the Templates folder, but not by tag, I can’t find a way to combine them in the inline format.
Help appreciated!