I have a Dataverse table with more than 5000 records. The canvas app I am building have a search screen which allows users to search for movie titles that contains specified string. Users can use multiple search strings separated by ";".
For example, if I have a movie tile called "Casablanca" and if users type "as; ap", it should return the record since "Casablanca" contains the string "as". However, if they specify "ap; bu", this record will not be returned.
I have the following filter condition which is working with warning:
I'd probably Split() the search values and put them into something that could then be used by ForAll().
Then use the ForAll() to Collect the titles that match each of the split patterns.
Finally, do a Distinct() to extract the unique values.
Probably want to sort it prior to showing the user. Weave one of those in somewhere.
I haven't fully researched the use of Ungroup() yet, but this is the second time I've seen it used. Give this a good read and see if it scratches the itch:
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.