Skip to main content
Community site session details

Community site session details

Session Id :
Power Apps - Power Apps Pro Dev & ISV
Suggested answer

Delegation problem

(1) ShareShare
ReportReport
Posted on by 7
Hello everyone
I have an application that shows records made in a table on a screen. Using filters, I can see the activity that was assigned to each employee.
The database is in a SharePoint list.
Now I'm having a delegation problem with in and &&. I tried a few other ways and couldn't solve the problem.
Can you help me?
  • Suggested answer
    Michael E. Gernaey Profile Picture
    44,770 Super User 2025 Season 1 on at
    Delegation problem
    Hi
     
    I would need to be on your machine to really do more but try this
     
    Let's first filter by dates, then filter by the rest. The question is, will the Dates bring back more than 2000 or not?
     
    With(
         {DateFilteredRecords: Filter(BDxxxx, then your date filters) },  // this should not cause a delegation issue
         
         Filter(DateFilteredRecords, Add in your IN filters)
    );
     
    // now if the number of date records won't exceed 2000, then you won't care about the delegation issues from the subfilter
    // I notice that your second in is not giving a delegation warning. its possible you you may need to do 3 tier
     
     
    With(
         {DateFilteredRecords: Filter(BDxxxx, then your date filters) },  // this should not cause a delegation issue
         
          With(
             { ResposavelFilterOnly: Filter(DateFilteredRecords, 'Your Combob 1_1 filter') },
               
                   // now you have records
                    Filter(ResposavelFilterOnly, Combobox1 filter)
          );
    );
     

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

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 791 Most Valuable Professional

#2
MS.Ragavendar Profile Picture

MS.Ragavendar 410

#3
mmbr1606 Profile Picture

mmbr1606 275 Super User 2025 Season 1