I'm attempting to use a combo box to query a large collection.
The list has 15k+ items currently and what I'm trying to do is have the user select an item from a combo box and basically do a where clause to query the list and load it into a gallery.
This is the OnChange Event for the combo box as well as the datepicker
ClearCollect(laborAllocation, Filter('Labor Allocation',
Date >= (DatePicker1.SelectedDate-Weekday(DatePicker1.SelectedDate,2) + 1) And
Date <= (DatePicker1.SelectedDate-Weekday(DatePicker1.SelectedDate,2) + 7) And
Project.Id = ProjectCombobox.Selected.ID));
the gallery is set to laborAllocation
The results should generally a couple dozen to a hundred entries.
It doesn't currently work consistently or accurately.