Hi
I have an app that has an opening screen with a gallery driven from a sharepoint list. There are a number of filters, the most important being 'Owner'. Once the user has set the filter(s) the gallery is filtered to show only the relevant lines.
The user then uses the arrow to go to the detailed page and complete the information needed.
The feedback I have had from users (which is fair) is that when they are returned to the selection screen they have to put all of the filters in again. Some of them have 50+ records so I can see how this would be annoying.
Is there a way I can 'set' the filters until the user presses a clear button? Would that effect other users of the app?, is there a better way to make this easier for the users?
I have added a couple of screenshots
The filters are Collection based and the search code for the gallery is:-
Search(If
//This is for all and all
(DD_Effective.Selected.Result ="All" And DD_Owner.Selected.Result = "All", 'ICQ Q1 FY22',
//This is for all Effectiveness and Selcted Owner
DD_Effective.Selected.Result ="All" And DD_Owner.Selected.Result <> "All", Filter('ICQ Q1 FY22',Owner.DisplayName = DD_Owner.Selected.Result),
//This is for selected Effectiveness and All Owners
DD_Effective.Selected.Result <> "All" And DD_Owner.Selected.Result = "All",
Filter('ICQ Q1 FY22','Effective this Qtr?'.Value = DD_Effective.Selected.Result),
//This is for seleteced Effectivess and selected owners
DD_Effective.Selected.Result <> "All" And DD_Owner.Selected.Result <> "All",
Filter('ICQ Q1 FY22','Effective this Qtr?'.Value = DD_Effective.Selected.Result And Owner.DisplayName = DD_Owner.Selected.Result)),
TextInput2.Text,"Title")

Report
All responses (
Answers (