modified code block TABLE length(unique(map(filter(flat(rows.tags), (t) => start...
M /anton/undefined +0 -0
32 unmodified lines33
34## cities by year35
36```dataview37TABLE length(unique(map(filter(flat(rows.tags), (t) => startswith(t, "city/")), (t) => replace(t, "city/", "")))) AS "Cities", join(unique(map(filter(flat(rows.tags), (t) => startswith(t, "city/")), (t) => replace(t, "city/", ""))), ", ") AS "List"37TABLE length(unique(map(filter(flat(rows.tags), (t) => startswith(t, "city/")), (t) => replace(t, "city/", "")))) AS "Count", join(unique(map(filter(flat(rows.tags), (t) => startswith(t, "city/")), (t) => replace(t, "city/", ""))), ", ") AS "Cities"38WHERE date39SORT date DESC40GROUP BY dateformat(date, "yyyy") AS "Year"41```