Things I have tried
How do I get it to work when I have the following metadata:
key_dings:
- dings1
- dings2
- dings3
keyx: another_value
and the table query should not display
key_dings count
-.-.-.-.-.-.-.-.-.-.-.-.-.-
dings2. . . . . . . . 1
dings1
dings3
dings2 . . . . . . . . .1
dings3
but this:
tag … count
-.-.-.-.-.-.-.-.-.
dings1… 14
dings2… 7
dings3… 4
my dataview query is:
TABLE length(rows) AS num
WHERE contains(key_y,"another_value")
Group by key_dings
SORT Anzahl DESC
→ failed miserably, list like written above
if I test
GROUP BY key_dings[1]
it’s getting warmer, but of course it shows only the values of the 2nd (or x) tag, if I see this right, but it seems to count the entries right.
How can I get obsidian to group every value in the key_dings and count their numbers
best regards
anh