Hi all,
I have been developing some apps but now I having an issue in a gallery that I cannot solve
First I filtered a gallery related to table 1 by using a Dropdown, the formula works
If(Dropdown1.Selected.Result = "All";Table1;Filter(Table1;Column1= Dropdown1.Selected.Result))
Then I was asked to add a column from table 2 to the gallery, this formula also works
AddColumns(Table1;"ColumnXY";LookUp(Table2;ColumnX =Table1[@ColumnX];ColumnY))
Both formulas work perfectly separately however, now I want to put it together that I have the added column in the gallery but also I can filter it by using the dropdown
Does someone know how to combine both formulas?
Many thanks in advance