Hi @tscroggins , It is so perfect and simple(since it was invented by somebody😊). Thank you very much! I have adjusted it a bit to fit to my case, because have faced "waiting for input" in my table. <set token="field_tok"></set> <set token="value_tok"></set> <input type="dropdown" token="filter_tok" > <label>Filter</label> <choice value="eq">Equals</choice> <choice value="ne">Does Not Equal</choice> <choice value="co">Contains</choice> <choice value="nc">Does Not Contain</choice> <choice value="bw">Begins With</choice> <choice value="ew">Ends With</choice> <choice value="li">Length is</choice> <choice value="lg">Length is greater than</choice> <choice value="ll">Length is less than</choice> <choice value="nb">Does Not Begin With</choice> <choice value="nw">Does Not End With</choice> <choice value="ps">Pls select</choice> <default>Pls select</default> </input> | where coalesce( case( "$filter_tok$"=="eq", '$field_tok$'==_value_tok, "$filter_tok$"=="ne", '$field_tok$'!=_value_tok, "$filter_tok$"=="co", like('$field_tok$', "%"._value_tok."%"), "$filter_tok$"=="nc", NOT like('$field_tok$', "%"._value_tok."%"), "$filter_tok$"=="bw", like('$field_tok$', _value_tok."%"), "$filter_tok$"=="ew", like('$field_tok$', "%"._value_tok), "$filter_tok$"=="li", len('$field_tok$')==coalesce(tonumber(trim(_value_tok)), -1), "$filter_tok$"=="lg", len('$field_tok$')>coalesce(tonumber(trim(_value_tok)), 9223372036854775807), "$filter_tok$"=="ll", len('$field_tok$')<coalesce(tonumber(trim(_value_tok)), -1), "$filter_tok$"=="nb", NOT like('$field_tok$', _value_tok."%"), "$filter_tok$"=="nw", NOT like('$field_tok$', "%"._value_tok), "$filter_tok$"=="ps", (1==1) ), false())
... View more