Search input for table

Hey there. i'm trying to create a search bar for my table, that automatically sets the filter under the Name coulumn" to the input of the earch bar.

I have tried this code : columnName: "Name", filterValue: table_search.value, operator: "contains"

Any hints on how it can be done?

hey @slyths , not sure what the the source of your data is (postgresql, salesforce, gsheets, etc...)
but regardless, you can likely do this with the Query JSON With SQL resource and do

select * from {{yourDataset.data}}
where
Name LIKE {{'%' + table_search.value + '%'}}

2 Likes