We have two Gallery objects in our application GalParentItems and GalChildItems and both of them are giving a Delegation Warning in the PowerApps Canvas. Also, we are seeing the behavior in our application which is that incomplete data is displayed when the Data Row Limit is reached.
We are using the Filter function which should be delegable, and we are using SharePoint as a data source which should support delegation. And yet, behavior is as if delegation is not occurring. We do not know why. Our formulas are as follows:
GalParentItems
Filter(Opportunities,'Opportunity Owner'.Email=User().Email && 'Sales Stage'.Value <> "Won" && 'Sales Stage'.Value <> "Lost" && 'Sales Stage'.Value <> "Moved Out")
GalChildItems
Filter (OpportunityItems, Opportunity_x0020_ID.Id=varParentItem.ID)
And I am unable to see records more than 500 when data row limit is set to 500, I can see them when it is set to 2000. Now in future I will get more than 2000 records what can I do to fix this issue?