Hi @nagestiada ,
If you have the Status card on Form1 and the Status in a Text Input, put this on the OnSelect of the save button - use the actual text box name in the below.
UpdateContext([vSubmitted:true});
Reset(YourStatusControlName);
SubmitForm(Form1);
UpdateContext({Popup:false})
On the OnSuccess of Form1
UpdateContext([vSubmitted:false});
on the Default of the Status Text Box
If(
vSubmitted,
"Completed",
Parent.Default
)
This will put Complete into the Status field when the form is submitted as required.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.