Hi, i'm approaching powerapp, i'm quiet new 😉
I'm trying to edit a sharepoint list edit screen to add some logic. I have a lookup field and i was able to filter it with the following code
Filter(
Choices([@Associations].AssociatedTo),
Value in Filter(
Objects,
Active
).'Display Name'
)
These are the lists "involved" in the next filter criteria that i would like to introduce
- Locations
- Objects (list of users with the refence of the location)
- DDI (list of DDIs with the reference of the location)
- Associations (list of phone numbers with the reference of DDI and Objects)
I would like to show only the users based on the same location of the DDI related to the phone number. how can i do it? thank you in advance.