Hello PowerApps Community,
I have a Gallery of Multiple Sharepoint lists combined using a Collection called Assets.
To display the results, I am using a button "Show results" and using the following code:
ClearCollect(Assets, HardwareList, SoftwareList, AccountList)
I also have a combo box dropdown that gets its values from another SharePoint list called users using the following code:
Choices(Users.'Full name')
How can I filter assets in the gallery (combined collection) to only a specific person's name selected in the dropdown combo box ?
Thank you.