Hi folks ,
I have requirement please help to remove the delegation warning showing for "in" for this below Powerapps code wriiten on a gallery item property
Sort( Filter( Filter( SFB_User_Master, Flag= "Yes" ), Country_Col in varUserCheck ), ID, SortOrder.Ascending )
Where SharePoint list name " SFB_User_Master" having more than 13k records ,contains "User_name"(Single line of text)column,"Country_Col"(single line of text) & "Flag" (single line of text) column.
VarUserCheck : variable can contains more than 2 countries name .
Code for it , written OnVisible property of the screen
Set( varUserCheck, Filter( Dev_SFB_User_Master, User_Email_ID = varloggedinUserEmail ).Country_Col );
VarloggedinUserEmail : user().email
Please help me to solve this issue.
Thanks in Advance.