I have a filter in the powerapps gallery...
I have 3 dropdowns...
The first is called: "Regional", the second: "Grupo" and the third: "Litragem"...
So ... The first one if it is blank shows all the data in the gallery, if it selects any value, it shows the data and the second filter, and so it shows the values of the first and second filter, which I haven't been able to do so far is when the third filter is activated ...
The third filter does not show exactly the results of the 3 dropdowns ....
I want it to show the values of exactly the 3 filters if they are activated, or if not the two filters, or just the first filter.
My database is CDS
My code:
If(IsBlank(dropdownRegional)&&IsBlank(dropdownGrupo);Metas;Filter(Metas; Regional = dropdownRegional.Selected.Result && Grupo = dropdownGrupo.Selected.Result || Litragem = dropdownLitragem.Selected.Result))