Hi,
I have a gallery that has to be filtered by the user that is logged in and if they use one of the filters or search box. Up until now my formula only had to filter using one drop down or the search box, but I have to add in an additional drop down to filter. The user should be able to see their own requests and be able to filter by status, assignee or by searching by title.
Current Formula
If(
IsBlank(cbRequestStatus.Selected.Value),
Filter(
Sort(
'Vendor Setup',
ID,
SortOrder.Descending
),
'Created By'.DisplayName = Office365Users.MyProfile().DisplayName && (inputSearch.Text in Title)
),
Filter(
Sort(
'Vendor Setup',
ID,
SortOrder.Descending
),
'Created By'.DisplayName = Office365Users.MyProfile().DisplayName && (inputSearch.Text in Title) && 'Request Status'.Value = cbRequestStatus.Selected.Value))

How can I add in the logic to allow the user to filter by a 2nd drop down as well? They should be able to select multiple drop downs and use the search box in parallel.