Hi @BCBuizer @WarrenBelz both of the filtering don't show the results I was expecting.Actually, they aren't showing a thing at all. For now I've tried the following things:
/*ForAll(
Split(TextInput1.Text," "),
Collect(productsearch, Search(PA_ProductSearch_V2S,ThisRecord.Result, "crb8d_itemid","crb8d_itemdescription", "crb8d_material", "crb8d_fbr","crb8d_credcode","crb8d_suppliername"))
)*/
/*ClearCollect(productsearch,Search(
PA_ProductSearch_V2S,
TextInput1.Text,"crb8d_itemid","crb8d_itemdescription", "crb8d_material", "crb8d_fbr","crb8d_credcode","crb8d_suppliername"
)
)*/
ClearCollect(productsearch,
ForAll(
Split(TextInput1.Text," "),
Search(
PA_ProductSearch_V2S,
ThisRecord.Result,"crb8d_itemid","crb8d_itemdescription", "crb8d_material", "crb8d_fbr","crb8d_credcode","crb8d_suppliername"
)
))
/*ClearCollect(productsearch,
Ungroup(
ForAll(
Split(TextInput1.Text," "),
Filter(
PA_ProductSearch_V2S,
Result in "crb8d_itemid" ||
Result in "crb8d_material" ||
Result in "crb8d_fbr" ||
Result in "crb8d_credcode" ||
Result in "crb8d_suppliername"
)
) ,"Value"
)
)*/
I've been testing. The first 2 are showing data.
1. Showing data but not filtering the filtered data.
2. Only filter on whole textbox.
3. Not showing data, made by @BCBuizer. When placing directly on table, the columns aren't found anymore.
4. Not showing data, made by @WarrenBelz. When placing directly on table, nothing changes.