Hi @slourbet!
I’m guessing the console trace spits out the interaction because the condition on the button was met, but the interaction was not actually carried out.
Taking pointers from this post, it looks like your filter expression needs a few changes.
So instead of:
[[TargetItem.Strategy.toLowerCase().includes("guardia")]]
You’ll want something like this instead:
[[TargetItem.Strategy.toLowerCase().indexOf("guardia".toLowerCase()) >=0]]
If you wanted the filter to work based on a text field input, you can swap out “guardia” for LVAR1 where LVAR1 should reference the text on the text field widget, e.g.:
[[TargetItem.Strategy.toLowerCase().indexOf(LVAR1.toLowerCase()) >=0]]
Lastly, feel free to remove the repeater’s ItemLoaded Set Text events since it looks like you already connected the widgets to each repeater column.
I’ve attached an example file to demonstrate the above. Lmk if I misunderstood or you have any questions.
RepeaterFilter.rp (56.4 KB)