Hi
I tried searching, filtering and sorting my gallery and almost suceeded 😉
I get the text box, the sort functions and one drop down filter to work, but when i try to include the second drop down filter, I fail.

With this code, the first drop down is working just fine.
SortByColumns(
Search(
If(
DropdownStatus.Selected.Result = "Alle";
'Reporting Vermietung';
Filter(
'Reporting Vermietung';
'Status Text' = DropdownStatus.Selected.Result
)
);
TextSearchBox1_1.Text;
"Objekt";
"PFM";
"Status_x0020_Text";
"Mieter"
);
SortColumn;
If(
SortDescending1;
Descending;
Ascending
)
)
I tried to include the second filter drop down like this, but it's not working properly:
SortByColumns(
Search(
If(
DropdownStatus.Selected.Result = "Alle" || DropdownPFM.Selected.Result = "Alle";
'Reporting Vermietung';
Filter(
'Reporting Vermietung';
'Status Text' = DropdownStatus.Selected.Result || PFM = DropdownPFM.Selected.Result
)
);
TextSearchBox1_1.Text;
"Objekt";
"PFM";
"Status_x0020_Text";
"Mieter"
);
SortColumn;
If(
SortDescending1;
Descending;
Ascending
)
)
Many thanks in advance 🙂