I tried setting the reset function in data on advanced to true - but that doesn't reset the textbox value after I enter data. If I use Button3.Pressed in the reset function under data and advanced, it does reset the values, but resets before the data will move to the form so it doesn't add the information to excel.
This is what I have on my Next button. This works for updating my excel file but it also doesn't go to the next page which is another question.
OnSelect -
If(!IsBlank(Name_1 || Address_1 || City_1 || state_1 || ln || zipp), SubmitForm(Form6),
Navigate(Question_2, ScreenTransition.Fade,{error2_v:false}),
UpdateContext({error1_v:true})
)
Solved! Go to Solution.
If you want to reset the form after submitting your ino just go to OnSuccess property of the form and add what you want to happen there. in this case:
ResetForm(Form1) or Reset(ControlName) if you want to reset any control ythat is outside a form.
Regarding navigating to the next screen it may be because you hane a "," after the navigate function instead of a ";".
i would try to put the navigate command on the OnSuccess property anyway too, so if for any reasin your form did't submit, the user won't think everything is done
If you want to reset the form after submitting your ino just go to OnSuccess property of the form and add what you want to happen there. in this case:
ResetForm(Form1) or Reset(ControlName) if you want to reset any control ythat is outside a form.
Regarding navigating to the next screen it may be because you hane a "," after the navigate function instead of a ";".
i would try to put the navigate command on the OnSuccess property anyway too, so if for any reasin your form did't submit, the user won't think everything is done
Thank you!!! I solved the problem
User | Count |
---|---|
193 | |
126 | |
89 | |
48 | |
42 |
User | Count |
---|---|
278 | |
162 | |
137 | |
81 | |
78 |