I keep getting a delegation Warning error on HasStock ="Yes", this is a calculated field in my SharePoint list. How can I rewrite this function to address that delegation warning?
This function is used to filter a dropdown list based on the values returned in another once the criteria of HasStock is met. The first result is based on a comma separated email list.
Filter(
Split(
LookUp(
'Matrix',
_myProfile.Mail = Email,
ReportingLine
),
","
), Result exactin Filter(SM, HasStock = "Yes").EmpEmail
)