Hello,
I have a powerapp , using a Collection at AppStart to collect records from my Sharepoint library.
The Sharepoint library currently has 560 rows.
Then i have a text field to input which is a Application ID , I key in the Application ID and hit a search button , which will retreive rest of the columns from sharepoint lib - (Customer (choice field) , name (text) , place Itext), source (choice))
Also i added a column ID from sharepoint View , when i search for Application ID which has assigned ID in sharepoint over 500 (520) and hit search button i dont get any results , when i use an Application ID which has ID in sharepoint say 400 i will get the results.
I Know if can change the setting in powerapps to 2000 , but my data set will grow beyond 2000 in next few days .
Need help to solve this issue urgently.
On Start APP CODE IS
Concurrent(
ClearCollect(VarCollection1, Filter('Wheeler Docs', ID >= 1 && ID <= 500)),
ClearCollect(VarCollection2, Filter('Wheeler Docs', ID >= 501 && ID <= 600)));ClearCollect(CollectK, VarCollection1, VarCollection2)
Search Button Code is
UpdateContext({CustomerNameVar:First(Filter(CollectK,ApplicationNumber=TextInput1_AppID_2.Text)).Customer});
UpdateContext({NameVar:First(Filter(CollectK,ApplicationNumber=TextInput1_AppID_2.Text)).Name});UpdateContext({DocSourceVar1:First(Filter(CollectK,ApplicationNumber=TextInput1_AppID_2.Text)).SourceSystem});UpdateContext({PlaceVar:First(Filter(CollectK,ApplicationNumber=TextInput1_AppID_2.Text)).Place})
Thanks & Regards