In one of my first apps I have no delegation warning. But yesterday I still had to increase the limit from 500 to 2000.
My source is PowerBi. I then filter out items if a unique code exists in my Sharepoint List.
This is how I have my Gallery Items set up and as I say there is no delegation warning.
Sort(
Filter(
PowerBIIntegration.Data,
'Account' = "112",
Not(
'ID' & Text(
Today(),
"[$-en-US]dd/mm/yyyy"
) in SPList.Column
)
),
'Employee',
Descending
)
My source is BI Data. I push this data to a list but once the item has been actioned I filter out the item with a unique code ( the Not In part of the formula).
Yesterday, the 501st item was not being filtered out of the gallery. I then had to increase it to 2000 and it filtered out.
What am I doing wrong?
Thanks
Ed