Hi all,
Hope you are doing well.
I build a productivity app where the user will need to fill his daily productivity.
I build a gallery like below with some controls input.
I set the default items to theses control to check if there is any items already created on the Sharepoint list with 2 filters.
Basically theses controls can return only one SP record due to the filter (Date + Category + Agent Name).
My question is : I have a delegation warning on all inputs where i set the default item to the SP list. This SP list will have more than 5000 items in the futur, so i will have an issue with the delegation warning or not ? Because as i said, controls will return only one record, as you can see below :
If
(IsBlank
(LookUp(PAT_Tracker_AppResults,
Country = Text(Prod_DropDown_Country.Selected.Result) && Text('Task Date',ShortDate) = Text(Prod_DatePicker.SelectedDate,ShortDate) && Exception = Text (ThisItem.Exception) && Carrier = Text(ThisItem.Carrier), 'Calls Handled')),"",
LookUp(PAT_Tracker_AppResults,
Country = Text(Prod_DropDown_Country.Selected.Result) && Text('Task Date',ShortDate) = Text(Prod_DatePicker.SelectedDate,ShortDate) && Exception = Text(ThisItem.Exception) && Carrier = Text(ThisItem.Carrier), 'Calls Handled'))
