Hi,
I am trying to have two filters for my browsegallery but cant seem to get it to work, some records get dropped when im filtering . I want the filters to be combined, ie Filter 1 AND Filter 2 or vice versa will drill down records nicely.
The filters work but when I reset it to either "Filter for Request Status" or "Filter for GCO Lead" records for missing.
Am I doing this correctly?
SortByColumns(
Filter(
[@'Data Source'],
If(
Dropdown3.Selected.Value = "Filter for Request Status",
Status_two.Value = "New Request" Or Status_two.Value = "GCO Assessment" Or Status_two.Value = "Pending SM Review of Date" Or Status_two.Value = "Complete",
Status_two.Value = Dropdown3.Selected.Value
)
And
If(
Filter_for_GCO_Lead.Selected.Value = "Filter for GCO Lead",
'GCO Lead_three' = "email1@gmail.com" Or 'GCO Lead_three' = "email2@gmail.com",
'GCO Lead_three' = Filter_for_GCO_Lead.Selected.Value
)
),
"Title",
If(
SortDescending1,
SortOrder.Descending,
SortOrder.Ascending
)
)