Hello,
I’m using “code” field as a sorting/address system for my notes. It’s more or less a tree structure. So for example I consider 101.1 as a child of 101. Now I want to filter out all tiddlers containing current tiddler’s code. Here’s what I’m trying:
<$let
codename={{!!code}}
>
<$macrocall $name=table-dynamic filter="search:code[<<codename>>]]" class="w-100" fields="code tbl-expand title tags"/>
</$let>
I’ve tested that <<codename>>
returns correct content (say 101), and when I use 101 directly in the filter it works as expected. But when I put <<codename>>
in the filter I get “The filter input is empty”. Is there a specific format I need to follow?
Thank you so much for your help.