I have a Sharepoint list with all of our employees. In Power Apps, you can select an employee from the list to initiate their Offboarding. When the name is selected (form: NewOffboarding_1) and the form submitted, I have the following assigned to the submit buttons OnSelect:
Set(varNewOffboardingName, OffboardingNameSelectBox.Selected.Title);
SubmitForm(NewOffboarding_1);
ResetForm(NewOffboarding_1);
Reset(OffboardingNameSelectBox);
Set(varOffboardingVisible, false)
I want to also have the SP field "OffboardingStarted" (Yes/No field) updated to "Yes" for the individual selected. How would I do that? Would it be in the button's OnSelect property? Or in the forms OnSuccess?