Need help integrating JD and my PKM vault in Obsidian

Thank you, I tried but it did not work.

Here is the front matter with the property. Essentially, I’m trying to have a table that will show every document that has the property “JD-Category” that is equal to “11 :person_raising_hand: Moi & les autres”

Here is the code that I’m trying to use

TABLE WITHOUT ID file.link as Catégories
where startswith(JD-Category, "11 🙋 Moi & les autres") 
sort file.link

But this is what I get

Any tricks that you have would be appreciated.

Have a great day

Found it!!!

Here’s the code (I’m so happy)

TABLE WITHOUT ID 
file.link as "" 

WHERE contains(JD-Category, "11")

sort file.link

Thanks again!

1 Like

Sort I just saw this. Thes startswith function should work too but glad you found a solution.

If you just want JD-Category to be an exact match you can also just use JD-Category = “Xxxx”.

1 Like