Hi Users,
I need help, please. I am trying to filter a gallery based on response, but I already added 2 drop down filters. I need to add this to complete a patch formula that would filter out by responses Filter('App', 'Corrected'=false) but I am not sure how to add it to what I already have.
This is what I have so far,
If
//This is for all and all//
(DDAisle.Selected.Value = "--All--" And DDSupervisor.Selected.Value = "--All--", 'Audit',
//This is for all aisles and selected supervisors//
DDAisle.Selected.Value = "--All--" And DDSupervisor.Selected.Value <> "--All--",
Filter ('Audit','Supervisor Assigned'.DisplayName = DDSupervisor.Selected.Value),
//This is for selected aisles and all supervisors//
DDAisle.Selected.Value <> "--All--" And DDSupervisor.Selected.Value = "--All--", Filter('Audit', 'Aisle for App'=DDAisle.Selected.Value),
//This is for selected aisles and selected supervisors//
DDAisle.Selected.Value <> "--All--" And DDSupervisor.Selected.Value <> "--All--",
Filter('Audit', 'Aisle for App'=DDAisle.Selected.Value And 'Supervisor Assigned'.DisplayName = DDSupervisor.Selected.Value))