Hello,
I have multiple search field so customer can search each column separately.
The problem is I can do one serach ( Search('Table', ProducentSearch.Text, "Producent) ).
How to do in each texfield I can search separately?
I have Gallery Item
Hi @mallow
You could try something like this if all of your column types are text types
Search('Table', IsBlank(ProducentSearch.Text)|| "ProducentSearch.Text",
IsBlank(NazwaSearch.Text)|| "NazwaSearch.Text",
IsBlank(ParagrfSearch.Text)||"ParagrafSearch.Text",
etc...
)
hmm... It does not work I have error on table: Invalid argument type(Boolean). Expecting a Text value instead
@mallow Two ways in which I have used Search so far:
Search( Table, SearchString, Column1, Column2.....)
Search( Search( Table, SearchString1, Column1), SearchString2, Column2)
Both have different functions and different pros/cons. I think you are looking for the second fucntionality.
Please accept the solution if it resolves your query!!
User | Count |
---|---|
255 | |
110 | |
90 | |
51 | |
44 |