Hello I would like to filter a gallery using a text box. But I would like to enter more than one keyword as a filter. As a result, only the entries should remain above where each keyword occurs.
As an an example:
This is my Gallery:
No1: Bla Bla Bla
No2: Blu Bla Blu
No3: Blo Bla Blu
No4: Bli Blu Blo
in the Textbox I enter: "bla blu"
Result should be: No2 and No3
or
in Textbox enter: Blo Bli Blu
Result should be: No4
For two words my Code works but I had no idea how it works for more words.
This is my Code:
Filter(
Galery;
First(
Split(
TextSearchBox1_1.Text;
" "
)
).Result in 'Details:';
Last(
Split(
TextSearchBox1_1.Text;
" "
)
).Result in 'Details:'
)

Report
All responses (
Answers (