cancel
Showing results for 
Search instead for 
Did you mean: 

Filter collection - Contains / wildcard

samuel_a_thomas
Level 3
Dear All, I am looking for a way to filter my collection based on several filter + contains functionality . I know that, As input in the action stage we write the filter as following : "[ColumnName]='"&[data we want]&"'" But Know i would like to filter on a field containing the word "SAM" for example so I try these expression: "[ColumnName]='"& "*SAM" &"'" and as well "[ColumnName]='"& "%SAM" &"'" But nothing is working ? could you please help me ? Thanks a lot if someone has already succeed with this, I will be a huge help for me !!! Best regards
4 REPLIES 4

John__Carter
Staff
Staff
Try [Column Name] LIKE '*SAM'

shahariar_k_bhu
Level 5
What about filtering using InStr function? InStr([Column Name]; ""SAM"") > 0

Just want to confirm that John's ""LIKE"" pattern works great.

Just to elaborate, the filter action uses SQL syntax (like this: https://www.w3schools.com/sql/sql_like.asp )