Hi there,
I'm new to powerapps and running into a delegation warning with on the Lookup portion of my formula when trying to sort the results. To provide some context, I have 2 Galleries:
- Gallery1 is connected to a "Locations" list on SharePoint with a ID and LocationName
- Gallery2 is connected to a "LocationsAndContacts" list which contains an ID, LocationID and ContactID. This gallery is set to filter based on the selected item ID of Gallery1.
- I have a 3rd list which is a "Contacts" list, which contains an ID and ContactName
I'm trying to get Gallery2 to Lookup the ContactName from the ContactsList and then sort Gallery2 based on the ContactName.
My Formula:
Sort(Filter(Table1, ID = Gallery1.Selected.ID), Lookup(Table2, Value(ID) = Table1_ID2, LastName))
The formula works but I receive a delegation warning on the Lookup portion.
Any suggestions on how I can rewrite the Lookup portion.
Thanks,