I have a BrowseGallery connected to a Sharepoint List of 25000 rows, if I try to do a Sort or a SortByColumns on a single column of my List I have no problems, but if I try to insert another Sort or another column in the SortByColumns my list returns no data.
Can you tell me if there is a record limit that prevents me from sorting based on 2 columns?
I temporarily solved my issue by concatenating the 2 columns.
This is the content of my BrowseGallery Items :
Sort(
Filter(
[MySP_List];
ACCOUNT = User().Email;
StartsWith(
Column1;
TextSearchBox1.Text
) || StartsWith(
Column2;
TextSearchBox1.Text
) || StartsWith(
Column3;
TextSearchBox1.Text
) || StartsWith(
Column4;
TextSearchBox1.Text
)
);
Column_order1 & Column_order2;
If(
SortDescending1;
Descending;
Ascending
)
)