@Phineas ,
put this code on the onsuccess property of the form
Patch(SPList1, Form1.LastSubmit, {Status: {Value: "Approved"}})
If you want to use a button outside of the form submission process to update the 'Status', you should put tis code on the onselect property of the button
Patch(
SPList1,
LookUp(SPList1, ID = Form1.LastSubmit.ID),
{Status: {Value: "Approved"}}
)
Or, if you already have the ID available in a text input or data card value named RequestFormItemID_DataCardValue, you could use:
Patch(
SPList1,
LookUp(SPList1, ID = Value(RequestFormItemID_DataCardValue.Text)),
{Status: {Value: "Approved"}}
)
If this explanation is helpful to you, please consider accepting it. 😊