Hello,
I have 3 pages with 3 forms which is a multi-screen form.
On the last page I have two buttons:
One button will send the data to the database and returns the user to the home page
The second button will send the data to the database and returns the user to the second form page.
I would like to make the second button so that when the user clicks it, the data of the first page is already filled in by what has been filled in before so that he / she doesn't have to fill this again and can skip this step and go straight to the second form.
This is how my code looks right now:
Patch('Lead Form', varFormData, Form1.Updates, Form2.Updates, Form3.Updates, Form4.Updates, Form5.Updates);
If(
IsEmpty(Errors('Lead Form')),
Notify(
"Success",
NotificationType.Success
);
Navigate('Form - Contact Info Page'),
Notify(First(Errors('Lead Form')).Message,
NotificationType.Error
)
)