I’m loving this dataview plugin. Automated lists makes it that much closer for obsidian to use as my primary PKM.
I’m a massage therapist and I’m experimenting with Obsidian. I use special tests to narrow down potential causes for pain and dysfunction. At the top of each test, I can have some information about the test for the automated list.
—
type: test
location: [shoulder, cervical]
dysfunction: [spaceoccupy, compression]
—
Now in my automated list I’d have code - lets say it’s my shoulder list…
table dysfunction from ""
where type = "test" AND location = "shoulder"
It doesn’t pick up on this test, I’m assuming, because the location is not just the shoulder.
I’ve seen a solution something like
table dysfunction from ""
where type = "test" AND location[0] = "shoulder"
but this only works if shoulder is the first item. I’d need it to work regardless of which position shoulder is listed.
I’m not a programmer (I dabble in css and html, I repeat myself), so I’m sure I’m just missing something simple. Any help would be appreciated 