Hello
Trying to achieve:
- submit form data (in this case 'data entry form' created using the edit form linked to sharepoint list) to another specific sharepoint list depending on the user. I am trying to use the Switch Function to make this work but am running into " the operation is invalid error message"....
OnSelect code for form submit button is:
Switch(User().FullName,
"Person 1", 'Form 1';
"Person 2", 'Form 2';
"person 3", 'Form 3');
SubmitForm('data entry form');
Notify("Your form has been submitted, thank you", NotificationType.Information, 3000);
NewForm('data entry form')
Newbie - so would not be surprised if reinventing the wheel with this .... all help much appreciated!