I am editing SharePoint Customize form in PowerApps. In my SharePoint list, I have one combo box column named status. In my customized form, I had added one button to submit form and create a new row in SharePoint list.
I was required to update the status column (combo box) in the new row as "Submitted" after click on the submit button. However, my power fx query is not working at all. Anyone can help on it? Thank you
My power fx for the submit button:
Set(varStatus,LookUp(Choices([@'Create New Request'].Request_x0020_Status),Value="Submitted"));
SubmitForm(SharePointForm1);
If(SubmitForm(SharePointForm1),Notify("Your request has been submitted for review!",NotificationType.Success));
IfError(SubmitForm(SharePointForm1),Notify("Your request has been failed to submit!",NotificationType.Error));
Set(varStatus,Blank());
This is my column in SharePoint List
