Hi@powerapps890,
I have seen that you have opened the same case before:
https://powerusers.microsoft.com/t5/Building-Power-Apps/Keep-data-card-information-upon-saving/td-p/675181
I have posted my reply already, is there anything I missed?
How you set your DefaultMode of your form which is the key to solve your problem. (IMPORTANT)
Is the form in the screenshot a SharePointIntegration?
Normally, a SharePointForm is set to EditMode. I modify the previous solution, you can try as below.
Set the OnSuccess property of your form to the following:
Set(SubmittedData, Form1.LastSubmit);
NewForm(Form1)
Set the Items property of your form to the following:
SubmittedData
Set the Default property of the corresponding TextInput control within the Description DataCard as below:
SubmittedData.Description
Note: Attachment control will keep the last submitted attachment by default, so you just need to set the Default property of the corresponding TextInput control within the Description DataCard.
Please try to check if this could solve your problem, if it could not, more details would be appreciated.
Best Regards,
QI