Hi power apps experts,
I have a text column with customer names, and I am performing search in this way:
Search('CustTabel', Proper(TextSearch.Text),"CustomerName")
I am using proper, as names are normally written that way. But, we also have some Company names that are written in capitals, for example "BBC ..."
How can I perform search on the same column with proper as well as upper?
Search('CustTabel', Proper(TextSearch.Text) || Upper(TextSearch.Text) ,"CustomerName")
But this doesn't work.
Thanks in advance