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 Apps
Answered

Large collection

(0) ShareShare
ReportReport
Posted on by 11
 I have a data source table with more than 4000 entries.
From this I need to create a collection to be used in a dropdown box. This will be filtered by another dropdown box. Both dropdowns will get their values from a single field in the data source table which has three information with delimiter "||" between them.
Construction of a field 'SalesPersonKey' value: "SalesPerson||CompanyName||SourceSystem"
The dropdowns will be:
1: Company Name
2: Salesperson
 
I do not know if one collection is the best solution,  but I need to be able to create the two dropdowns, where the first filter the second.
The code needs to take into account that new companies can be added, and salespersons are added at a regular basis in source systems.
 
 
'Dim.SalesPerson' is a SQL-table, that is a source in the Power App. I cannot change the columns in this table, it is as it is.
Until now, this code has been used:
Concurrent(
    ClearCollect(
        ColSalesKey1,
        Sort('Dim.SalesPerson',SalesPersonCode, SortOrder.Ascending)
    ),
    ClearCollect(
        ColSalesKey2,
        Sort('Dim.SalesPerson',SalesPersonCode,SortOrder.Descending)
    )


);
ClearCollect(
    ColSales,
    ColSalesKey1,
        Filter(ColSalesKey2, Not(SalesPersonCode in 'Dim.SalesPerson'.SalesPersonCode))

);
Clear(ColSalesKey1);
Clear(ColSalesKey2);

ClearCollect( colSLSSplit,
    ({SalesPersonCode: "All"}), 
        AddColumns( ColSales, 
            SalesPerson, Index(Split(SalesPersonKey,"||"),1).Value, 
            Company, Index(Split(SalesPersonKey,"||"),2).Value)

);
 
But it doesn't work anymore, as the entry count is beyond 4000, so we are missing entries in the middle.
 
Based on a lot of reading, I have tried this code:
Clear(Persons);
ForAll(
        ClearCollect(CompanyList, Distinct(
        ClearCollect(
            col_PersonCode,
            AddColumns(
                'Dim.SalesPerson',
                SalesPerson, Index(Split(SalesPersonKey,"||"),1).Value, 
                Company, Index(Split(SalesPersonKey,"||"),2).Value
            )
        ), Company)),
        Collect(Persons, Filter(col_PersonCode, Index(Split(SalesPersonKey,"||"),2).Value=Value)
                )
)
 
But it only collects 2000 entries.
 
Any suggestions on how to create the correct entries for the two dropdowns?
Categories:
I have the same question (0)
  • Verified answer
    WarrenBelz Profile Picture
    153,779 Most Valuable Professional on at
    Hi ATG_DLF 
    If you have a unique sequential numeric field, you can collect all records as per this blog of mine.
     
    Please click Does this answer your question if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it a Like.
    MVP (Business Applications)     Visit my blog Practical Power Apps    Buy me a coffee

     
  • ATG_DLF Profile Picture
    11 on at
    Thank you @WarrenBelz,
     
    This works perfectly to solve my need. Added a column to the collection that can be used as filter from the first dropdown.

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!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 93 Most Valuable Professional

#2
Haque Profile Picture

Haque 81

#3
Valantis Profile Picture

Valantis 49

Last 30 days Overall leaderboard