Hi there,
I'm having the issue where if I choose multiple tags inside the combobox it doesn't filter it properly as in it filters only the newest added tag I've choosen and if I manually remove the tags from the combobox, nothing shows anymore until i use the "reset" button I've added to it.
Those are the tags I'm using inside MS List.
The issue wherein it only shows the newest added choice I've put in.


When I remove those tags:

and the code I'm using for the gallery:
Filter(
'Prompts';
TextSearchBox1.Text in Aufgabe || TextSearchBox1.Text in Prompt;
If(
IsBlank(ComboBox2.SelectedItems);
true;
ComboBox2.Selected in Kategorie
)
)
the Combobox2:
Choices([@'Prompts'].Kategorie)
The main goal was to be able to use multiple choices inside the combobox and it'd output every item from that list that contains those choices.
Do you have any tips?
Thanks.