
I am trying add a PowerAutomate button where when it's clicked it will change all the columns that say 'Pending' to 'Complete'. However; it only updates the first row matching the column. I don't know what the solution is even though I scrolled through a lot of blog posts. Any help?
Here are some screenshots to show you what I'm working with.
Hi , @ladybird
If you want to update all the [AssetStatus] = "Pending" to "Complete".
You can directly use this code in Power Apps:
UpdateIf(B_Table ,AssetStatus="Pending" , {AssetStatus: "Complete" });
If this reply can help you , you can click mark this reply as solution (Accept solution) which can help more people, thanks in advance!
Best Regards,
Yueyun Zhang