Hi All,
I want to use like operator like aggregate,
Ex username like %admin% or userName like "%st% based on searchvalue
Please suggest
Index(ToUpper(value which you want to search), ToUpper(SearchText var which store search text)) <> -1
here is screen shot where i used this for serach in list which work fine for me.
Hi @ujwala T, try using the Index built-in function provided by OutSystems.Here is an example to use in the list filter:Index(userName, YourText) <> -1You can also set ignore case if you want to.ThanksGitansh Anand
Hey Hi,Please refer to the mentioned image below. And let me know if its working.Thanks