Hi everyone
I am currently working on an app that has a datasource of a large SharePoint Online list. I have a gallery in my app that points to a collection and I want my users to be able to search this gallery to find the name of a customer. I've setup a text input box (txtSearchPerson) and a search button. The OnSelect for the button is as follows:
ClearCollect(CustomerColl,Filter(CustomerList,txtSearchPerson.Text in Name))
In the formula bar I get a delegation warning saying it won't work on large datasets and sure enough when I run the search it only searches on the first 500 items in the gallery. I know I can increase this value but only up to 2,000 items and my list currently has over 10,000.
I've checked the list of delegable fields and in is in there so I'm not sure why it won't work? I've indexed the Name field in my SharePoint list but this has made no difference. I'd be really grateful if anyone knows of any workaround I can use to make sure my users can search like this on the whole of the list data.
Thanks in advance for your help.