I have a SharePoint list with around 700 entries. When I set the row limit to 2000 it displays my items in my gallery in descending order which is what I want, however when I change the row limit to 500, it does not show the most recent 500 entries.
See below my code. "Pages" is my datasource and I want all of the entries in this to be shown in descending order.
SortByColumns(
Filter(
Pages,
TextSearchBox1.Text in Text(Title),
FilterByDate.SelectedDate<=ArticleStartDate),
"ArticleStartDate",
Descending)