Hi,
I am trying to implement the search function on my help desk tool. But I am unable to figure out how to work around this delegation warning while achieving my goal. I need to be able to display only the records related to current user and use the text the given in the search box to run a contains search/filter on the Title column of my datasource. I am using a SharePoint list as my datasource.
Given below is the condition I am using in the Items section in my gallery. But I am getting delegation warning for both && and in (underlined in blue)
SortByColumns(
If(TextSearchBox1.Text<>"",
Filter('tracker', UserEmail=IssueLoggedByEmail && TextSearchBox1.Text in Title),
Filter('tracker', UserEmail=IssueLoggedByEmail)
),
"ID",
If(SortDescending1, SortOrder.Descending, SortOrder.Ascending)
)
Warning: Delegation warning. The highlighted part of this formula might not work correctly with column "Title" on large data sets.

Appreciate, if someone can help me to resolve this. I have been looking for solutions for past few days. It seems Search function and in is not delegatable. But, how can we handle this kind of situation?