Hi everyone,
I have a subrid with records. I want to select records, and press a button so the records are updated.
This is my code:
Great, I get it now.
I managed to make it work with this formula :
Hi @ProFe
The issue is that you are telling it to make a patch of elements and if you don't tell it which one the default one is creating,
The first thing you should do is go through each element to make the patch and you can do this using the lookup function and that way you will be telling it that that element is going to be updated.
If memory serves it would be Patch(tables,ForAll(elements;lookup,{
TriggerFlowResult:true;
Result:true}
))
If not the other way around first ForAll(Patch(Lookup
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.
You can accept more than one post as a solution
Thank you for your answer, but when I try this I encounter an error
This is due to .AllItems, I tried Self.Selected.Item but in this case I only patch the first selected record.
You don't need the for all, as self.selected.items is a collection
Try
Patch('
Training Subscriptions',
Self.Selected.AllItems,
{
TriggerFlowResult:true;
Result:true
}
)
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
mmbr1606
275
Super User 2025 Season 2