Announcements
UpdateContext( { varListCount: FlowName.Run( "YourListName" ).listcount } )
As you know You cannot get the total item count with CountRows() in Power Apps because of delegation (stops at 500/2000). Instead, you must fetch the ItemCount property of the list from SharePoint metadata.
CountRows()
IF you follow this steps you will be able to get the count
Go to Power Automate → New Flow → Instant cloud flow means trigger from power apps
Add action: Send an HTTP request to SharePoint
Site Address: your site (e.g. https://YourTenanet.sharepoint.com/sites/YourSite)
https://YourTenanet.sharepoint.com/sites/YourSite
Method: GET
GET
Uri:_api/web/lists/GetByTitle('Checklist')?$select=ItemCount
Uri:
_api/web/lists/GetByTitle('Checklist')?$select=ItemCount
Add action: Respond to Power Apps
Add output: ItemCount =body('Send_an_HTTP_request_to_SharePoint')?['d']?['ItemCount']
ItemCount
body('Send_an_HTTP_request_to_SharePoint')?['d']?['ItemCount']
Save the flow (For Example name it GetChecklistItemCount).
GetChecklistItemCount
Step 2 – Call Flow from Power Apps
In your app, set a variable with the count:
Set( varChecklistCount, GetChecklistItemCount.Run() ); Step 3 – Show the Count
Set( varChecklistCount, GetChecklistItemCount.Run() );
Bind your label to the variable:
Text(varChecklistCount)
First( Sort( SPListName, ID, SortOrder.Descending ) ).ID
First( Sort( SPListName, ID, SortOrder.Descending ) ).ID - 45
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.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Vish WR 1,055
Valantis 666
11manish 666