Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Power Apps Pro Dev & ISV
Answered

Not able get some records in Collection

Like (0) ShareShare
ReportReport
Posted on 3 Apr 2025 11:08:35 by 66
Hi community,
 
I am facing a problem related to collection, From SharePoint list I am storing data in my collection but issue is the records which are present in SharePoint list i am able get them in collection but only 4 or 5 of them is not displaying in collection. I tried refreshing collection or data source but still only those 4 or 5 of records are not visible. Anyone know what  might be the issue?
  • Verified answer
    SwatiSTW Profile Picture
    532 Super User 2025 Season 1 on 03 Apr 2025 at 11:40:30
    Not able get some records in Collection
    Some records from your SharePoint list are not showing in the collection. This usually happens because of data limits, filters, or issues with the data type or user access.
    1. Increase the data row limit in app settings to 2000
    go to Settings > Advanced settings > set Data row limit for non-delegable queries to 2000
    2. Use delegable filters to make sure all records load
    example:
    ClearCollect(colData, Filter(MyList, Status.Value = "Active"))
    avoid using functions like Left, Mid, SortByColumns on large lists unless they are delegable
    3. Check if your filter is excluding data
    test without filter to see if records appear
    ClearCollect(colTest, MyList)
    4. If your SharePoint list uses Choice, Person or Lookup fields, access them correctly
    example for Choice: Status.Value
    example for Person: Author.DisplayName
    example for Lookup: Department.Title
    5. Check if some records are hidden due to SharePoint permissions
    go to the SharePoint list and make sure all records are visible to you
    6. Check if any SharePoint items have missing required data or errors
    7. Use Errors function to detect if any record failed to load
    ClearCollect(colTest, MyList); ClearCollect(colErrors, Errors(MyList))

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,518 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,692 Most Valuable Professional

Leaderboard