Dear all,
May I know that how can I access 2000 records from Share Point list through Power Apps?
I have try to use collection already but it just collect first 2000 records only.
Kindly advice.
Concurrent(
ClearCollect(CollectionA,Filter(varDB,Value(ID)<2000)),
ClearCollect(CollectionB,Filter(varDB,Value(ID) >=2000 And Value(ID)<5000)));
ClearCollect(NameofCollection,CollectionA,CollectionB)
Thanks.