i want to filter a gallery based on three dropdowns.
1.The first dropdown is month as a text.
2.The second dropdown are projectnames but they are not in the same table like the others, because the projectname come from external table called Projects. But every description in the collection has a description which is based on a Projectname.
3.The third are the descriptions of the projects ?

ort(
If(IsBlank(Dropdown3.Selected.DateMonthYear) && IsBlank(Dropdown4.Selected.Arbeitspaket);
Filter(colF; Mitarbeiter = User().Email);
If(IsBlank(Dropdown3.Selected.DateMonthYear);
Filter(colF;Mitarbeiter = User().Email && Arbeitspaket = Dropdown4.Selected.Arbeitspaket);Filter(colF; Mitarbeiter = User().Email && Monat = Dropdown3.Selected.DateMonthYear)
)
);
"Monat";
SortOrder.Descending
)
hope someone can help me 😞