Hello!
I am using this formula to get more than 2000 rows out of my collection:
Concurrent(
ClearCollect(col1, Filter(ProjectLijsten, IDRij >= 1 && IDRij <= 2000)),
ClearCollect(col2, Filter(ProjectLijsten, IDRij >= 2001 && IDRij <= 4000))
);
ClearCollect(colCombined,col1,col2)
I then get the error that "IDRij" is expecting a number value. Because I am using Power Automate, IDRij needs to be a textvalue but actually it is a number.
I tried to do it like this but then it will not work with large number sets.
Concurrent(
ClearCollect(col1, Filter(ProjectLijsten, Value(IDRij) >= 1 && Value(IDRij) <= 2000)),
ClearCollect(col2, Filter(ProjectLijsten, Value(IDRij) >= 2001 && Value(IDRij) <= 4000))
);
ClearCollect(colCombined,col1,col2)
What could I do?