hai guys, i just want to ask how do i submit a form and at the same time, i want to patch submission date with Now() function.
Cause as i know that patch will update the data, but not sure about when submitting a form
my code:
If(
Form1.Valid,
// Submit the form, clear attachments, reset the form, and open a new form
Set(varSuccessPopup, true);
SubmitForm(Form1);
Clear(colFilteredAttachments);
ResetForm(Form1);
NewForm(Form1);
,
Set(varInvalidSubmit,true);
);
where can i insert patch function here?