18
Views
1
Comments
Solved
Do comma separated search for a Text name in input search Box.
Application Type
Reactive

Hi Community,
I have a list of employees displaying basic details and an input search where we can search names of the employees.
So is there anyway where I can enter multiple names comma separeted in Input search box and get searched by only those entered names. The search values would be like below.
Eg: "Drik,Joy"

I have searched on Forum but didn't got any solution for this. So is there anyway to do this in aggregates or advance sql by applying filter. Can someone please help me with this issue.

Thanks and Regards,
Sanji San.

2026-01-28 16-57-48
Mihai Melencu
Champion
Solution

 Hi @Sanji San ,

You can use the following filter in your aggregate:

SearchKeyword = "" or SearchKeyword like "%" + Entity.Name+ "%"


'I also attached a sample OML for reference.


Result:



SearchSample1.oml
Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.