Hey,
I would like to be able to search for components in my cell of a table in my search field.
So for example: Now it's like this, I want to search for "keyboard MNB123" and enter "keyboard MNB" in the search field, then it shows me all the relevant keyboards. BUT, if I just search for MNB, it doesn't find anything.
The Product and the Product number are in the same cell in the table and with 13,000 rows it is not an option to put the model in a separate column.
That's why I need a deligable formula that searches everything in the cell and not just if the beginning is correct.
IMPORTANT! It must be deligable with over 2500 data sets. I've been using this deligable formula so far:
Filter(
SharepoitList;
StartsWith(
Product;
tbSearchInput_1.Text
) Or StartsWith(
Manufacture;
tbSearchInput_1.Text
) Or StartsWith(
Size;
tbSearchInput_1.Text
)
)
Best regards.