Hello there!
I am trying to filter a collection with 5k rows in a dropdown based on a text search box. I have a formula that places all rows into a collection like this;
Concurrent(
ClearCollect(col1; Filter(EindproductenBevMateriaal; UniekID >= 1 && UniekID <= 2000));
ClearCollect(col2; Filter(EindproductenBevMateriaal; UniekID >= 2001 && UniekID <= 4000));
ClearCollect(col3; Filter(EindproductenBevMateriaal; UniekID >= 4001 && UniekID <= 6000));
ClearCollect(col4; Filter(EindproductenBevMateriaal; UniekID >= 6001 && UniekID <= 8000));
ClearCollect(col5; Filter(EindproductenBevMateriaal; UniekID >= 8001 && UniekID <= 10000))
);;
ClearCollect(colCombined; col1; col2; col3; col4; col5);;
So I have a dropdown and a text search field.
This is the code I've tried, it displays the Bestands1 like I want to (only 2000 rows), but not when I try to search for it. Is there any way to get rid of this delegation without using StartsWith? Is delegation the issue for it showing no results when filtering by text search box, or is it something else?
If(
ZoekenNaarOrders.Text = "";
colCombined.Bestandsnaam1;
Filter(
colCombined;
ZoekenNaarOrders.Text = Bestandsnaam1
)
)