modified code block TABLE length(filter(tags, (t) => startswith(t, "country/")))...
M /anton/undefined +0 -0
3 unmodified lines4
5## countries by year6
7```dataview8TABLE length(filter(tags, (t) => startswith(t, "country/"))) AS "Countries", date, purpose WHERE date SORT date DESC8TABLE length(filter(tags, (t) => startswith(t, "country/"))) AS "Countries", date, purpose WHERE date SORT date DESC GROUP BY dateformat(date, "yyyy")9```