Hello I am running to an issue, please help
I am trying to achieve
a. User opens a item from a gallery which opens the form in Edit Mode.
b. If they edit the form with new data, i want to only submit the form with the updated data.
c. I have a TextInputCanvas where user can add comment, i want this comment to be patched to Remarks Column and Submit the form.
d. If user edit the item and put comment in TextInputCanvas, I want it to patch the Remarks columns and submit the form.
Formula I have Onselect property of Save Button.
If(
!IsBlank(TextInputCanvas1.Value),
Patch(
'Sales',
itemID,
{Remarks: User().FullName & " -" & TextInputCanvas1.Value & " " & itemID.Remarks}
);
SubmitForm(Form2_3),
SubmitForm(Form2_3)
);
While I do this, even when user put data in TextInputCanvas1, the remarks column is not getting patched, it only submits the form. Can you please help and let me know what can I do here ?
Thank you.