Hello All,
i am facing a delegation warning with the code below. Can anyone please tell me how i can remove the delegation? In the code i am filtering my request form with for user by matching user email id and also by checking user user admin. I also have a search box which allows to search for unique id and Title and status column. I get a delegation warning, how can i remove the delegation warning?
SortByColumns(
Filter(
'SAP User Request Form',
And(
Or( Lower('Email Id') = Lower(useremail) , Lower(useremail) in Lower(
Concat(
admin.Email,
","
)
)) &&
Or(
(TextSearchBox1.Text in 'Unique ID'),
(TextSearchBox1.Text in Title), (TextSearchBox1.Text in status.Value) )
)
),
"Created",
Descending
)