Need help with filter in combination checkbox

Hello,

the idea is to list modified tiddlers limited by

  • number of tiddlers should be displayed
  • the checkboxes:
    • “Text Tiddler” (containing user field ‘erstellt’)
    • all tiddlers without system tiddlers
    • system tiddlers only

→ this works fine.

Now I want to limit additional the list by date modified (eg 20221206)

→ this doesn’t work :frowning:

List_modified.json (6.8 KB)

Thanks
Stefan

You define selection:

<$set name="selection" value={{!!selection}}>
</$set>

Which means selection is only available inside the set tags! Move </$set> to the bottom of the report list/loop.

Thanks @Mark_S - works great now :slight_smile: