modified code block TABLE length(unique(map(filter(flat(rows.tags), (t) => start...
M /anton/undefined +0 -0
13 unmodified lines14
15## countries by year16
17```dataview18TABLE join(unique(map(filter(flat(rows.tags), (t) => startswith(t, "country/")), (t) => replace(t, "country/", ""))), ", ") AS "Countries"18TABLE length(unique(map(filter(flat(rows.tags), (t) => startswith(t, "country/")), (t) => replace(t, "country/", "")))) AS "Countries", join(unique(map(filter(flat(rows.tags), (t) => startswith(t, "country/")), (t) => replace(t, "country/", ""))), ", ") AS "List"19WHERE date20SORT date DESC21GROUP BY dateformat(date, "yyyy") AS "Year"22```19 unmodified lines