Hi all, I am building an app where I show a list of orders (a form) with a search bar, and I filter these when matching a condition. Right now It works ok, but not as perfect as I'd like, let me explain.
SortByColumns(Filter([@myLIST], StartsWith(Contract, TextSearchBox1.Text)&& Order_Status<>"Shipped"),"Requested_Date", SortOrder.Ascending)
As can be appreciated on the previous formula, I use the 'StartsWith' function. Basically that's the reason why it doesn't work as I'd like. Orders are labeled with an alphanumeric string, starting by letter/s. So, it works perfectly only if you type a string in the correct order. This is when the order is called 'OT23484755R' and you start typing 'ot234...'.
So my question would be, can I change my formula to make it work in case the user types, for example, '4755R'?
Thanks beforehnd