Hello! I have a survey app, which filters data from a SharePoint List and is being Filtered by Dropdowns, Search and Sorting by Columns when sort arrows are clicked. the list has over 3000 records and even though it isnt showing any delegation warnings, I'm still running into an issue when I turn the Row Limit down to 1 (for testing delegation purposes). I've included the code below. Would appreciate your expertise on this one 🙂 Thanks so much!
SortByColumns(If(
IsBlank(EndDatePicker_5.Value),
If(
IsBlank(StartDatePicker_5),
'EVALUATION LIVE DATASOURCE',
Filter(
'EVALUATION LIVE DATASOURCE',
'Completion time' >= StartDatePicker_5.Value
)
),
If(
IsBlank(StartDatePicker_5),
Filter(
'EVALUATION LIVE DATASOURCE',
'Completion time' <= EndDatePicker_5.Value
),
Filter(
'EVALUATION LIVE DATASOURCE',
'Completion time' <= EndDatePicker_5.Value,
'Completion time' >= StartDatePicker_5.Value,'INSTRUCTOR RATING'.Selected.Value="Instructor Rating: Show All" Or 'TRAINER NPS'='INSTRUCTOR RATING'.Selected.Value,'OVERALL RATING_1'.Selected.Value="Content Rating: Show All" Or 'NPS OVERALL '='OVERALL RATING_1'.Selected.Value,MANAGER='MANAGER SELECTION_1'.Selected.Value,StartsWith('Enter Name of Class',Searchbox_2.Text) Or StartsWith('Enter Class Start Date',Searchbox_2.Text) Or StartsWith('Please select Trainer',Searchbox_2.Text)))),SortColumn,If(SortDescending,Ascending,Descending))