Hi,
I am trying to patch multiple forms to one sharepoint list as well as after patching clearing the form and creating a notification that the form was submitted successfully.
This is the formula I am trying to use:
Patch('Meeting Data List';
Defaults('Meeting Data List');
Form2.Updates;Form3.Updates);
NewForm(Form2);
NewForm(Form3);
Notify("data submitted",NotificationType.Success);
However I get an error at the ' ; ' just after "Form3.Updates);" = Unexpected character
I have also tried using a comma ' , ' and received the same error.