Good afternoon,
I need to make a filter of people, but I am dealing with a problem.
If I input "Max" and "Josh" on the filter, when I use the filter searching in other order, like "Josh" and "Max", the filter don't recognize the names.
See below the images for better understanding.


The order of the names inputed, changes the filter result.
Filter(
solucoes_tech_mainbase,
Or(
TextInput1_2.Text in 'Nome da Solução',
TextInput1_2.Text in Descrição
) && Concat(
ComboBox1_1.SelectedItems,
DisplayName & ","
) in Concat(
NomeCriador,
DisplayName & ","
) && Concat(
ComboBox2_1.SelectedItems,
Value & ","
) in Concat(
'Tecnologias envolvidas',
Value & ","
)
)
That's the code I'm using to filter, but the only part related to this specific problem, is ComboBox1_1.
If you want to have more informations, please feel free to ask.