Premium Only Content

Let Users Know How Many Records are in a Gallery's full recordset
PowerApps galleries load records in chunks of 100, so a user is left wondering, "Is that everything?"
When Delegation Limits also come into play, the problem can be even more difficult. If the gallery contains exactly 500, or 2,000 records, is that all there are, or is that a result of delegation?
I solved the dilemma with a PowerApps flow and a Stored Procedure in SQL Server.
Here's the SQL from the Stored Proc. The rest of the code is revealed in the video.
USE [NameOfYourDatabaseGoesHere]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE OR ALTER PROCEDURE [dbo].[RecordCount]
@SearchTerm varchar(10) = ''
AS
BEGIN
DECLARE @Recordcount int
SELECT @Recordcount = count(*) FROM dbo.Employees
WHERE LastName like '%' + @SearchTerm + '%'
OR FirstName like '%' + @SearchTerm + '%'
RETURN @Recordcount
END
GO
Links to downloads:
https://www.gpcdata.com/downloads/Employees2K7.zip
https://www.gpcdata.com/downloads/Employeesbacpac.zip
-
14:31
Sponsored By Jesus Podcast
17 hours agoSATAN Knows Scripture Better Than You | Reading the Bible
1.6K1 -
2:50:36
Side Scrollers Podcast
17 hours agoMore Violent Attacks on Speakers + Hollywood DEMANDS “Free Speech” + More | Side Scrollers
9.78K14 -
17:31
GritsGG
13 hours agoDestoying Warzone Duos Lobby w/ Big Bob!
6.51K2 -
1:28:36
The HotSeat
13 hours agoAntifa Unmasked: Keyboard Warriors with No Courage
9.99K12 -
1:53:11
The Michelle Moore Show
16 hours ago'Why Is Gold & Silver Rising, Is Buying Silver A Good Option Right Now, Options of Getting Into The Market, and More' Guest, Dr. Mike Fuljenz: The Michelle Moore Show (Oct 2, 2025)
10.5K2 -
LIVE
Lofi Girl
2 years agoSynthwave Radio 🌌 - beats to chill/game to
203 watching -
15:03:05
blackfox87
17 hours ago🟢 SUBATHON DAY 1 | BO7 BETA | Premium Creator | #DisabledVeteran
75.8K4 -
2:24:09
The Quartering
7 hours agoCandace Owens WAR With TPUSA, Antifa BLOWN N OUT, & Pathetic Demand For Trump Interview
121K63 -
3:54:19
Alex Zedra
7 hours agoLIVE! Playing BO7 Beta!
51.5K10 -
1:52:56
TimcastIRL
8 hours agoElon Musk Says Woke NGO Responsible For Charlie Kirk Assassination | Timcast IRL
166K166