Filter( 'Submitted Requests', If( IsBlank(ComboBox1.Selected.Result) || ComboBox1.Selected.Result = "All", true, 'Requestor Country' in ComboBox1.SelectedItems ) && If( IsBlank(Filter_10.Text), true, Filter_10.Text in 'Submitted Date' ) && If( IsBlank(Filter_3.Text), true, Filter_3.Text in Title )&& If( IsBlank(Filter_4.Text), true, Filter_4.Text in 'Requestor Name') )
This is my items in the gallery. The problem is I have a delegation warning for large data sets. I know that if I used a collection it would go away. The problem is that when I submit a form the collection does not update unless onstart is pushed and the item will not be in the gallery until I reload the app. Is there a way I can alter the collection portion so it updates fast enough to get rid of the delegation warning?