Hello,
In PowerApps connected to a Dataverse table, if I set the Items property to a Search formula (on a text column), delegations works perfectly, but if I try to use the same formula within an UpdateContext with OnSelect on a button, the delegation doesn't work.
I realised that by setting the non-delegation limit to 2 items instead of 500 items.
Here is the Search formula I use :
Search(
SomeDataVerseTable,
"TheWordToLookFor",
"TheNameOfTheColumn"
)
In the Gallery where I use the formula, I get all the items I Search for, but in the UpdateContext on a button, I get only two items.
Same Search formula.
Is there a thing with UpdateContext that blocks delegation ?