Is there any method to work with more than 2000 records in PowerApps?
When I open my form which has some Dropdowns and one Gallery I only get one single record instead of 33.
This is my code:
Form: OnVisible: ClearCollect(colAll;Quellendaten)
Gallery: Items: SortByColumns(Filter(colAll;If(IsBlank(DropdownAbteilung.SelectedText.Value); true ;Title=DropdownAbteilung.SelectedText.Value)&&If(IsBlank(DropdownKlasse.SelectedText.Value); true ;Klasse=DropdownKlasse.SelectedText.Value)&&If(IsBlank(DatePickerAU.SelectedDate); true ;Datum=DatePickerAU.SelectedDate));"Klasse";If(SortDescending1;Descending;Ascending))
Or is there any other way how I can filter records from my SharePoint list?