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
-
1:08:26
Sarah Westall
4 hours agoSuicide Pacts forming in Youth Social Media Groups - Discord, Reddit, TikTok w/ John Anthony
42.3K12 -
2:25:31
vivafrei
15 hours agoEp. 281: Charlie Kirk; Routh Trial; Charlotte Train; Bolsanaro Defense; SCOTUS & MORE!
116K175 -
2:55:38
Turning Point USA
6 hours agoWASHINGTON D.C. PRAYER VIGIL FOR CHARLIE KIRK
65.1K30 -
35:54
The Mel K Show
6 hours agoMel K & Tim James | Healing is an Inside Job | 9-14-25
36.2K3 -
3:06:33
IsaiahLCarter
9 hours ago $2.20 earnedCharlie Kirk, American Martyr (with Mikale Olson) || APOSTATE RADIO 028
47.9K7 -
16:43
Mrgunsngear
12 hours ago $2.24 earnedKimber 2K11 Pro Review 🇺🇸
27.8K13 -
13:40
Michael Button
1 day ago $0.24 earnedThe Strangest Theory of Human Evolution
28.3K17 -
10:19
Blackstone Griddles
1 day agoMahi-Mahi Fish Tacos on the Blackstone Griddle
20K3 -
23:51
Jasmin Laine
1 day ago“Stop Wasting My Time!”—Trump's BRUTAL WARNING To Canada As Poilievre ROASTS CBC LIVE
15.7K28 -
9:54
Millionaire Mentor
1 day agoNBC Host EXPOSES JB Pritzker For Saying This About Trump
9.68K10