Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Suggested answer

Delegation Warning in startswith function - Previous its working

(1) ShareShare
ReportReport
Posted on by 225
Hi all,
 
facing delegation warning while using startswith function, previously i create many app with this method still now its working fine without any warning, now iam facing this delegation warning, how to resolve this..
 
With({wdata:Filter(CMD_NA_Tracker,StartsWith(Request_ID,TextInput1.Text))},
ClearCollect(colGridData,Filter(wdata,Assign.Value<>"Assigned")))
 
 
  • Jawaharprem Profile Picture
    225 on at
    Delegation Warning in startswith function - Previous its working
    Hi all,
     
    finally i got this works..
     
    "ClearCollect(colGridData, Filter(CMD_NA_Tracker,Or(Assign.Value="Not Assigned")))" didnt get any delegation warning..
     
    thanks to help me to develop..
     
  • Jawaharprem Profile Picture
    225 on at
    Delegation Warning in startswith function - Previous its working
    hi mmbr1606, thanks for your time, the Request_ID is a column in sharepoint, the Textinput1.text is textinput used to search the id's, if changed as per my  requirement,  getting error... previously its working very fine now getting delegation warning, i checked with my IT Team no response...
     
  • Jawaharprem Profile Picture
    225 on at
    Delegation Warning in startswith function - Previous its working
    thanks SaiRT14, row level i already increased to 2000, and used your code but getting error.
     
  • Suggested answer
    SaiRT14 Profile Picture
    1,961 Super User 2025 Season 1 on at
    Delegation Warning in startswith function - Previous its working
    Pls try the following:
     
    • Go to Settings > Advanced Settings > Data row limit for non-delegable queries and increase the limit (up to 2000).  
    • If your dataset is large, you can switch to a delegable function
    With({wdata:Filter(CMD_NA_Tracker, Search(Request_ID, TextInput1.Text))},
    ClearCollect(colGridData, Filter(wdata, Assign.Value <> "Assigned")))
     
    hope this helps.
  • Suggested answer
    mmbr1606 Profile Picture
    12,108 Super User 2025 Season 1 on at
    Delegation Warning in startswith function - Previous its working
    hey
     
    If you're filtering on a single column and Request_ID is a text column, you can use the Search() function, which is delegable in SharePoint:
     
    With(
        {wdata: Search(CMD_NA_Tracker, TextInput1.Text, "Request_ID")},
        ClearCollect(colGridData, Filter(wdata, Assign.Value <> "Assigned"))
    )
    
    if that helped please mark as verified answer,
     
    thanks

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,651 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,997 Most Valuable Professional

Leaderboard