
This is how i have the SharePoint list
In PowerApps I have it this way but it only lists one object but what I want to obtain are the options of the Actos_inseguros filtering by the Título column
Distinct(Filter(Medidas_correctivas;Título in Dropdown4.Selected.Value);Actos_Inseguros.Value)
@Eloiky try:
Distinct(
LookUp(
Medidas_correctivas;
Título = Dropdown4.Selected.Value
).Actos_Inseguros;
Value
)
Note the Distinct function is not delegable.
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.
If you like my response, please give it a Thumbs Up.
Imran-Ami Khan