Hi All,
Long time reader - first time posting.
I have a Stock searching app that allows staff to search for a stockcode by typing in the code or the description.
However when typing in the description it has to be in the exact order: for example typing in "Bolt Nut" will only bring up stock items with Bolt Nut in their description, not " nut bolt"
Currently this is my filter:
Filter(StockInfos,Or(SearchField.Text in StockCode,SearchField.Text in DESCRIPTION))
Stockinfos is the dataverse table
Searchfield is the text input for the user to search.
StockCode and DESCRIPTION are the columns in the dataverse table I need to search.
Effectively I need to Split the search field and then perform this filtering on each item in the table result of the Split. Which I cannot seem to do successfully.
I have a lot of records in my gallery as well.
Thank you for your help.