Hi! I have a gallery which I have applied 3 filters to.
The filters work fine until I reset the filters (via the red cross). I can't get them to work unless I try to use the filters and then they wake up.
Looking at the below code, I have covered off the scenario where if one if blank, filter by the other two, but I haven't covered the scenarios where is 2 are blank, filter by the one in use. Am I correct?
Gallery Code:
If(Dropdown1_1.Selected.Value = "Select" And IsBlank(SearchTicket.Text) And IsBlank(SearchEntity), 'Reactive Support Escalations', //all blank
If(Dropdown1_1.Selected.Value = "Select",
Filter('Reactive Support Escalations', SearchTicket.Text in Title And SearchEntity.Text in 'Entity'), //If Status Blank, filter Search text x2
If(IsBlank(SearchTicket.Text),
Filter('Reactive Support Escalations', 'Status Text' = Dropdown1_1.Selected.Value And SearchEntity.Text in 'Entity'),
If(IsBlank(SearchEntity.Text),
Filter('Reactive Support Escalations', 'Status Text' = Dropdown1_1.Selected.Value And SearchTicket.Text in Title),
Filter('Reactive Support Escalations', 'Status Text' = Dropdown1_1.Selected.Value And SearchTicket.Text in Title)))))
Reset Button Code:
Reset(Dropdown1_1); Reset(SearchTicket); Reset(SearchEntity)
No Filters Applied

One Filter In Use After Reset

Same Filter In Use After I have Tried the Other 2 (and not press reset)
