Hello,
I am using this formula in a dropdown element:
SortByColumns(Distinct(Filter(Wochenbericht;(KWNummer<=varKWN));KWNummer);"Result";Descending)
varKWN is the current weeknumber and I define it like
Set(varKWN;ISOWeekNum(Today()))
It has the correct value. The sharepoint I use to get data has around 7000 entries with pretty much all weeknumers (multiple).
When I use the formula above, I only get the weeknumers between 1 and 8. So it is missing some. When I change the formula to
SortByColumns(Distinct(Filter(Wochenbericht;(KWNummer=varKWN));KWNummer);"Result";Descending)
I do get the weeknumer 18 that was missing.
I recorded it as a gif:

I also get no delegation warning. What am I missing here? 😞