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:19:53
Barry Cunningham
7 hours agoBREAKING NEWS: PRESIDENT TRUMP RE-OPENS THE UNITED STATES GOVERNMENT!
42.1K18 -
20:47
The White House
7 hours agoPresident Trump Signs Senate Amendment to H.R. 5371
34.2K33 -
4:37:57
Drew Hernandez
1 day agoNEW EPSTEIN EMAIL DROP FULLY POLITICIZED
59.4K21 -
1:44:01
Tucker Carlson
6 hours agoTucker Carlson on the Israel First Meltdown and the Future of the America First Movement
65.9K427 -
4:02:08
Alex Zedra
7 hours agoLIVE! Phasmaphobia New Map!
55.4K2 -
2:16:06
Laura Loomer
8 hours agoEP155: Jihad Makes Its Move On The White House
47.3K63 -
2:18:47
TheSaltyCracker
8 hours agoDem's Epstein Drop Backfires ReeEEStream 11-12-25
109K219 -
17:08
Demons Row
8 hours ago $5.50 earnedMost Dangerous Motorcycle Clubs That Ever Existed 💀🔥
38.2K4 -
12:51
The Gun Collective
10 hours agoWOW! -- LOTS of new GUNS just came out!
19.4K10 -
2:06:53
I_Came_With_Fire_Podcast
17 hours agoWhat IS America First | Al Qaeda in the White House | China's Spy Highway
16.1K5