Dear Community,
I have spent my whole yesterday to find the solution but couldn't.
I have multiple questions
I have a form, where the datasource and target is a sharepoint list.
I have 3 different fields (lookup, combo box and text input (this is the most)).
What i do:
1. Submit(Form1) - to submit the request
1a: OnSuccess (Navigate to screen3)
2. On Screen3 i have a start a new form button which: NewForm(Form1);Navigate(EditScreen2, None);ResetForm(Form1)
What i want to achive:
I would like to keep few fields to be filled from the previous submit, but delete/reset the rest of the fields.
What i have tried so far:
I have created a ResetCheckBox variable and added to those fields 'Reset' part what i want to reset on a new request.
Created a new button on the Screen3 (Called 'New Request with the previous data'), added this command:
NewForm(Form1);Navigate(EditScreen2,None);UpdateContext({ResetCheckbox:true});UpdateContext({ResetCheckbox:false})
But it is not working. What should be the solution?
My second problem:
I have one Lookup datacard field, where the datasource is a Choice list from the Sharepoint list. How can i set a default value for that or avoid to reset from the previous submit?
Thank you