Hello everyone,
I have a problem with sql table and Power Apps gallery. I have SQL table with more than 5000 record but I only need to show data in powerapps gallery with filter which would probably will be only 100 records max but it only filter first 2000 record and display record which falls under 2000, so any idea how can I filter record which is more than 2000 and only show record filter record which only 100 or less.
below is the formula I am using so please any one can share any tips or any workaround.
Search(
Filter(
'[dbo].[Family_Violence_Listing]',
Listing_location = ddlViewCourtLocation.Selected.LocationID
&& DateValue(Text(Listing_Date),"en-US") = DateValue(Text(CalViewNTDate),"en-US")
),
TextSearchBox.Text,
"Case_Number",
"Party_Name"
)