hello,
I have modified the SharePointIntegration form for my SharePoint list in order to have three screens (New, Edit, View)
I would like two values to get default values when a new item is created only and those columns are:
- Status
- Evaluation
I understand I have to add a variable at the OnSave, currently I have:
- If(SharePointFormMode="CreateForm", SubmitForm(FormNew), If(SharePointFormMode="EditForm", SubmitForm(FormEdit)))
can someone tell me how to modify the above formula?
thank you