Hi all,
I have a gallery in an app that shows users all the other apps they have access to. All I need to do is add an input to make the app list searchable, so end users can find what they need faster. I'll include my Items property for the gallery, as well as the code I've been trying to use:
Gallery:
Sort(
Filter(AppCollection, Not StartsWith(properties.displayName, "(Testing)") && properties.displayName <> "AUNA MAIN"),
properties.displayName
)
Code for search:
Search(AppCollection, TextInput2.Text, "name")
I have been trying to use a Concurrent function, but I'm unsure if that's the best way to do things and have yet to make it work.
I appreciate any help!