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 / I want to check duplic...
Power Apps
Answered

I want to check duplicates records from Google Sheets over 10K records

(0) ShareShare
ReportReport
Posted on by 71

Hi, I've a data in my Google Sheets and the current formula is working well with the Max Data Row limit of 2000.

But I want to increase the data row limit to 10,000 so that I can enter all unique values.
Kindly help me with that.
Thanks.

Screenshot 2022-08-07 231156.png
Categories:
I have the same question (0)
  • Verified answer
    WarrenBelz Profile Picture
    156,382 Most Valuable Professional on at

    Hi @AlexRavens ,

    This should work on any sized list

    With(
     {
     wDup:
     LookUp(
     LEADs, 
     Email = Email_Input.Text
     ).Email
     },
     Set(
     showdups,
     !IsBlank(wDup)
     )
    )

     

    Please click Accept as solution 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 Thumbs Up.

    Visit my blog Practical Power Apps

  • AlexRavens Profile Picture
    71 on at

    @WarrenBelz same issue as before.
    Not showing duplicates after 2000th value.

     

  • Gochix Profile Picture
    1,937 Moderator on at

    Hi @AlexRavens ,

     

    If you have a ID column in your database then you could try to collect a new collection to avoid delegation issues.

    Had to apply this to one of my projects and works well..

     

    ClearCollect(
     StoresList,
     Filter(
     NewCatalogueList,
     PartID <= 2000
     ),
     Filter(
     NewCatalogueList,
     PartID > 2000 && PartID <= 4000
     ),
     Filter(
     NewCatalogueList,
     PartID > 4000 && PartID <= 6000
     ),
     Filter(
     NewCatalogueList,
     PartID > 6000 && PartID <= 8000
     )
    );
  • WarrenBelz Profile Picture
    156,382 Most Valuable Professional on at

    @Gochix ,

    This is Google Sheets here (not SharePoint) and comes with the vagaries of using a non-MS product. I have a blog on the Shadow ID (what you mentioned), but if the code I supplied does not work (it works perfectly on SharePoint in a test i just ran), I doubt those records are accessible as a number is no more delegable than Text.

    @AlexRavens ,

    I think your issue is the lack of Delegation in Google Sheets - maybe you should switch to SharePoint.

  • AlexRavens Profile Picture
    71 on at

    Hi @WarrenBelz,

    I've tried SharePoint Lists. It works well on for the powerapps but it doesn't have a usefull interface like Google Sheets & Excel online.

    Is it possible to make it work?

  • WarrenBelz Profile Picture
    156,382 Most Valuable Professional on at

    Hi @AlexRavens ,

    I am surprised that you do not regard the SharePoint interface as at least equal to Excel (I regard it as far better), but cannot comment on Google Sheets as I do not use it. The problem you have is that the backend of Power Apps needs to be a database that accepts Delegation of queries. As a minimum standard, SharePoint performs some of this (Dataverse and Azure SQL are better if you want to pay for them) and Excel does it in a limited way. Google sheets, however does not - please read this article - it confirms you can only retrieve 2,000 rows from Google Sheets.

     

    Please click Accept as solution 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 Thumbs Up.

    Visit my blog Practical Power Apps

     

     

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 Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 427 Most Valuable Professional

#2
11manish Profile Picture

11manish 201 Super User 2026 Season 2

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 128 Super User 2026 Season 2

Last 30 days Overall leaderboard