Hello,
I have a Powerapp which writes data to a sharepoint list, I have an option to see how much work was done for an item. Recently I noticed entries are showing work progress for those item, but in sharepoint list there are no records for those two item.
I am using this formula to calculate and see the work progress of an item.
Round((Sum(Filter(DailyReport, 'Item Code' = ThisItem.'Item Code'), 'Work Done')/ ThisItem.Quantity) * 100 , 2) & "% Completed"
Since I am using "sum" operation and my data source is a sharepoint list. I am getting a delegation warning.
I have increased the limit to 2000.
Any idea what is causing this?