Hello,
Considering the following tables:

I would like to reproduce the following scheme, i.e. the display of a gallery according to a search bar and several dropdown selectors.

The filters can be selected or not, the search bar filled or not.
At the moment I have not managed to integrate the filters and I only have this formula for the items in my gallery:
SortByColumns(
Search(
Employee,
InputSearch.Text,
"Name",
"Firstname"
);
"ID",
Descending
)
How can I integrate the different dropdowns as filter in this query?
I've already tried several solutions, like adding the addcolumn or filter function in the query, but I get stuck every time.
Thank you,
Baptiste