web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / How can I Fix this Del...
Power Apps
Answered

How can I Fix this Delegation Warning

(0) ShareShare
ReportReport
Posted on by 45

Hey guys,
I'm having a "problem" with delegation. I've already gone through the numerous threads on this issue but they didn't help me find a workaround/other solution.
I'm currenly building a simple apps to query the data from sharepoint list.

For example, I'm using the following formula to filter the data by the user inputs. The warning occurs.How will I fix this? Any recommendations please. See the Screenshot for better understanding. Thank you very much

 

 

Set(
 Vstatus,
 Dropdown5.Selected.Ivalue
);
ClearCollect(
 MyRequestList,
 Filter(
 Contract,
 CurrentUserEmail = 'Requestor Mail',
 If(
 !IsBlank(Vstatus),
 Vstatus = 'Form Status',
 true
 ),
 If(
 !IsBlank(TextInput9.Text),
 StartsWith(
 'Form NO.',
 TextInput9.Text
 ),
 true
 )
 )
)

 

 

2019-11-23_214226.png
2019-11-23_215817.png
Categories:
I have the same question (0)
  • Verified answer
    mdevaney Profile Picture
    29,991 Moderator on at

    @Qing 

    You'll need to recode those IF statements to do the same thing but using a slightly different method

    Set(
     Vstatus,
     Dropdown5.Selected.Ivalue
    );
    ClearCollect(
     MyRequestList,
     Filter(
     Contract,
     CurrentUserEmail = 'Requestor Mail',
     !IsBlank(VStatus) = true Or Vstatus = 'Form Status',
     !IsBlank(TextInput9.Text) = true Or StartsWith('Form NO.',TextInput9.Text)
     )
    )

     

    Here's a link to my forum post a week ago where I helped with a similar issue.  I put my pattern for avoiding delegation there.  You can bookmark to it for future reference.

     https://powerusers.microsoft.com/t5/Building-Power-Apps-Formerly/Filtering-on-multiple-fields/m-p/406120#M119400

    ---
    Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up.

  • Pstork1 Profile Picture
    69,129 Most Valuable Professional on at

    Another approach to fixing this that can be useful in complex filtering scenarios is to next the filters.  Since the delegation warning is only on one of the clauses in your filter you can also fix it by adding a filter within a filter.  Use the inner filter with the parts that don't cause a delegation warning.  If that will get your record count below the limit then you can safely ignore the warning.  In your case I suspect that the filter on current user alone may get you below the 500 record limit.  So you could try this filter.

    Set(
     Vstatus,
     Dropdown5.Selected.Ivalue
    );
    ClearCollect(
     MyRequestList,
     Fliter(
     Filter(
     Contract,
     CurrentUserEmail = 'Requestor Mail'),
     If(
     !IsBlank(Vstatus),
     Vstatus = 'Form Status',
     true
     ),
     If(
     !IsBlank(TextInput9.Text),
     StartsWith(
     'Form NO.',
     TextInput9.Text
     ),
     true
     )
     )
    )
  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    That is not a solution, if the collect ton give the warning neither should the source, Microsoft needs to fix this give us a toggle or something.

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 530

#2
WarrenBelz Profile Picture

WarrenBelz 459 Most Valuable Professional

#3
Haque Profile Picture

Haque 314

Last 30 days Overall leaderboard