I'm running into a delegation warning on some of my submits. Here is my formula for a single checkbox:
Patch(Datasource, First(Filter(Datasource, ID=varEditItem)), {checkbox:true}));
The above works and patches without any issues but I'm concerned about the delegation. I tried using LookUp instead and although I don't have a delegation warning, nothing submits to the datasource. I get not errors, just nothing happens.
Patch(Datasource, LookUp(Datasource, ID=varEditItem), {checkbox:true}))
Is there another way to make this work? I have a few of these popping up all over the place and would love to see them gone.