Hello,
I have a SharePoint list called Customer that has a Vendor field. This Vendor field is of type Lookup and pulls its data from another SharePoint list called Vendor List. Currently, I have the Vendor field tied to a dropdown in PowerApps and it works as expected.
Choices([@'Customer'].Vendor)
What I'm being asked to do is filter the vendors based on whether they are active or not. The Vendor List table consists of a Title (vendor name) and an Active field (Yes, No). I have added the Vendor List as a data source to my PowerApps form.
Filter(
Choices([@'Customer'].Vendor),
Value in Filter([@'Vendor List'], Active = true)
This code does not work. What am I missing?
Thanks!