Hi,
I have a gallery as the below
| ID | Address | Status |
| A | xxxxxx | Active |
| B | yyyyyy | Inactive |
| C | zzzzzz | Active |
This gallery is composed from two dataverse table
Table_1: With ID and address
Table_2: With ID and status
The items property of the gallery is Table_1, and column Status is a Lookup column with the formula Lookup(Table_2,ID=ThisItem.ID).Status.
I want now to create a dropdown with items ["Active","Inactive"] in order to filter the gallery by those values, but not sure how to do it. I also would need to use non-delegable functions as I will have several thousand of records.
Any suggestion will be much appreciated.