Possibly a delegation issue, not sure how to resolve.
SharePoint list called WorkRequest. Has a column called Status, there are currently 77 items with Status value of Open and >3000 with Status as Closed. The app is set to load 2000 records. In the gallery, it's not displaying any recent items with status of Open. I'm thinking it's loading the first 2000 records on load (regardless of status value)?
On my gallery page, there is a combo box control for the user to display Open vs. Closed, plus a search field to further filter.
[ComboBox3, value is either Open or Closed]
[inpSearchNameID, input text that will search based on DisplayName of a person field, ID of list item]
The items property for this gallery is:
SortByColumns(Filter(WorkRequest, (StartsWith(Open_Closed, ComboBox3.Selected.Value) && (StartsWith(ID, inpSearchNameID.Text) || StartsWith(RequestShortName, inpSearchNameID.Text) || StartsWith(Submitter.DisplayName, inpSearchNameID.Text) || CountRows(Filter(LeadAssigned,DisplayName = inpSearchNameID.Text))>0))),"Modified",SortOrder.Descending)

Any advice on how to resolve this?
Is there a way to ensure all Open items are loaded on start?
Is there a way to ensure all Open items for the User logged in are loaded on start?