I have a consignment app that is going to be used to replace excel as I hate when companies use excel as data input and database all in one. That being said they want to be able to filter the gallery by name. This is easily done however I want it to be dynamic as they type which requires the in operator as far as I know. Is there any work around for this? Here is my code:
If(IsBlank(TextInput1) And IsBlank(TextInput1_1), Consignment, If(!IsBlank(TextInput1), Filter(Consignment, TextInput1.Text in Name), etc...
Is there anyone to replace the part in blue with something that is delegable and wont mess up in the future?
TYIA!