Hi,
I have to filter gallery with text input, but I want to make it filtered possible with only few words.
I mean, for now the gallery gets filtered when the user have to put the whole same text in 'Request ID'.
However, I want to make it possible for users to filter the gallery with only some part of the text, for example 11102.



I'm filtering the gallery like this:
SortByColumns(
Filter(
'LIST',
(IsBlank(drp_status_2.Selected) || Status_ = drp_status_2.Selected.Value)
&& (IsBlank(txtRequestIDFilter.Text) || Title = txtRequestIDFilter.Text)
&& Requestor.Email=User().Email
),
"Title",
SortOrder.Descending
)