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 / My filter works with 1...
Power Apps
Answered

My filter works with 100 records but not with thousands. What am I doing wrong?

(0) ShareShare
ReportReport
Posted on by 10

Hi

I am new Power apps , my SharePoint list contains 50,000 records. I use like this in power apps 

Filter(
    Employees,
    Department in ["IT","HR"]
)


 

The app only returns some results now all 


 


 
Categories:
I have the same question (0)
  • Verified answer
    MS.Ragavendar Profile Picture
    7,431 Super User 2026 Season 1 on at
     
    If Department is Text column
     
    With(
        {
            dept1: "IT",
            dept2: "HR"
        },
        Filter(
            Employees,
            Department = dept1 || Department = dept2
        )
    )
    If Department is choice column
     
    With(
        {
            dept1: "IT",
            dept2: "HR"
        },
        Filter(
            Employees,
            Department.Value = dept1 || Department.Value = dept2
        )
    )
     
    ✅If this helped, please Accept as Solution to help others ❤️ A Like is appreciated 🏷️ Tag @MS.Ragavendar for follow-ups.
  • Verified answer
    RobElliott Profile Picture
    10,521 Super User 2026 Season 1 on at
    "in" is not delegable so will only return 500 or 200 records depending on what data limit you've set. That's why with thousands of items in your list not all of the filtered records are being returned. The solution by @MS.Ragavendar is the way to do it.
     
    Rob
    Los Gallardos
    Principal Consultant, Power Platform, WSP Global (and classic 1967 Morris Traveller driver)
  • Suggested answer
    Vish WR Profile Picture
    3,748 on at
     
     

    This is usually a delegation issue.

    When a formula cannot be delegated to the data source, Power Apps processes only the first 500 records (or up to 2,000 if configured). The remaining records are ignored, leading to incomplete or incorrect results.

    Always check for delegation warnings and use delegable functions whenever possible.

     

    Microsoft Reference

     

    https://learn.microsoft.com/en-us/power-apps/maker/canvas-apps/delegation-overview

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

Season of Sharing Community Challenge Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Valantis Profile Picture

Valantis 424

#2
WarrenBelz Profile Picture

WarrenBelz 355 Most Valuable Professional

#3
11manish Profile Picture

11manish 290

Last 30 days Overall leaderboard