Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Unanswered

Asset Manager with more than 2000 records

(0) ShareShare
ReportReport
Posted on by

Hello,

 

I recently found that PowerApps only pulls through a maximum of 2000 records from a Microsoft / Sharepoint list. I am planning to have an asset manager that will exceed the maximum amount.

 

Is there any way that this can be exceeded? I want to be able to search my app for any asset that I have in my list if it is possible. My current items property on the gallery looks like this 

With({SourceItem:'Asset Manager'},
Sort(
 If(
 IsBlank(TextSearchBox1.Text),
 SourceItem,
 Search(
 SourceItem,
 TextSearchBox1.Text,
 "Location",
 "Title"
 )
 ),
 "Title"
)
)

It is currently set so that I can search for either the asset tag (Title) or the location of a number of assets.

I'm a bit clueless with formulas so I have no idea what I am doing or what direction to go in, so any help would be appreciated! Thanks

  • SH-23070720-0 Profile Picture
    on at
    Re: Asset Manager with more than 2000 records

    Thanks @WarrenBelz 

    I will check at some point next week as I've been caught with some other things that have taken my priority.

  • WarrenBelz Profile Picture
    146,708 Most Valuable Professional on at
    Re: Asset Manager with more than 2000 records

    Hi @HeronS98 ,

    Please have a read of Collections in this blog of mine - it may assist

  • SH-23070720-0 Profile Picture
    on at
    Re: Asset Manager with more than 2000 records

    Hi @CNT ,

    Sorry I closed up shop for the year in Dec and have only just got back - I hadn't got it working, no.

  • CNT Profile Picture
    10,919 Super User 2025 Season 1 on at
    Re: Asset Manager with more than 2000 records

    @HeronS98 Di you get it to work?

  • SH-23070720-0 Profile Picture
    on at
    Re: Asset Manager with more than 2000 records

    I'll test about and get back to you.

  • CNT Profile Picture
    10,919 Super User 2025 Season 1 on at
    Re: Asset Manager with more than 2000 records

    @HeronS98 I've the same without any problems Maybe it's something else in the App that's causing the problem.

    CNT_0-1639941008456.png

     

  • SH-23070720-0 Profile Picture
    on at
    Re: Asset Manager with more than 2000 records

    Annotation 2021-12-17 083920.png

    Still getting that same error as previous.

  • CNT Profile Picture
    10,919 Super User 2025 Season 1 on at
    Re: Asset Manager with more than 2000 records

    @HeronS98 Then do it like this,

    Clear(col1);

    Collect(col1, Filter('Asset Manager', AssetManagerID<2001);

    Clear(col2);

    Collect(col2, Filter('Asset Manager',  AssetManagerID>2000 && AssetManagerID<4001);

    ...

    ...

    Clear(colCombined);

    Collect(colCombined, col1, col2,......)

  • SH-23070720-0 Profile Picture
    on at
    Re: Asset Manager with more than 2000 records

    When I put into OnVisible, it says col1 name isn't valid. Does is need to be defined elsewhere?

  • CNT Profile Picture
    10,919 Super User 2025 Season 1 on at
    Re: Asset Manager with more than 2000 records

    @HeronS98 Where you place it depends on the App. The best place would be in the OnVisible of the Screen. As you can get only 2000 records at a time, please follow the formula below. col1, col2, etc., are intermediate collections. Finally, all the records will be in the collection called colCombined.

     

    ClearCollect(col1, Filter('Asset Manager', AssetManagerID<2001);

    ClearCollect(col2, Filter('Asset Manager',  AssetManagerID>2000 && AssetManagerID<4001);

    ...

    ...

    ClearCollect(colCombined, col1, col2,......)

     

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

Understanding Microsoft Agents - Introductory Session

Confused about how agents work across the Microsoft ecosystem? Register today!

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

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 66,030 Most Valuable Professional

Leaderboard