Hi @Anonymous,
Could you please tell me if you want to update all the records with Pending status or only one record?
Is this Status column a Text or Choice column?
If you just want to update a single one record, I think you could just add a save button and set the OnSelect property as below:
Patch(Data,LookUp(Data,ID=xxx),{Status:"Waiting for approve"})
You should define the ID of the record that needs updated, or you could add a Gallery and display all the records within by setting the Items property as your data source directly. Then select the record you want to update, and modify your Patch formula as below:
Patch(Data,Gallery1.Selected,{Status:"Waiting for approve"})
Or if you want to update all the records with Pending status, you should use the UpdateIf as below:
UpdateIf(Data, Status="Pending", {Status:"Waiting for approve"} )
If the Status column is a Choice type:
UpdateIf(Data, Status="Pending", {Status:{Value:"Waiting for approve"}} )​