Hello,
I'm creating a screen that will search for department field. For example, the department field may show "WEC NAW - WCF,WCE,WCM". The problem is filter function only works if we type/search exactly what it is.
For instance, if I type "WCF WCE" or "NAW WCF" in search box, it display nothing. But it works if I type "WCF, WCE" (with comma). So, what I'm trying to do is I want it to ignore comma (,) and dash (-) and it should be able to search for any word available in that field. Is this possible?
Right now, I'm having this code in my gallery items:
Filter(People, If(!IsBlank(TextSearchBox1.Text),TextSearchBox1.Text in department))
Thank you for your time.