I am making a sceen that contains two forms and when submit, two different tables in onedrive excel are modified
I am using concurrent for the submission:
Onselect: Concurrent(Submitform(Form1), Submitform(Form2))
I would like to navigate to a submit successful screen named DONE. Normall I would add:
- Onsuccess: Navigtion(Done)
to the form if only a sigle form is concern.
Solved! Go to Solution.
Hi @VinL
1- Since you are using concurrent - any action within can fire first or simulatenously hence no way to navigate to success screen directly.
Better option would be first to fire submitform1 and then on success of submitform1 fire submitform2 and then onsuccess of submitform2 navigate to success screen
2- Yes warning will be displayed
3- No - so if form1 succeds and form 2 fails - form1 would still post data since it succeeeded
4- Why not use patch to update the record (form2) only when form1 is successul (you can use the onsuccess property of form1 to patch/update the record)
Regards,
Reza Dorrani
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @VinL
1- Since you are using concurrent - any action within can fire first or simulatenously hence no way to navigate to success screen directly.
Better option would be first to fire submitform1 and then on success of submitform1 fire submitform2 and then onsuccess of submitform2 navigate to success screen
2- Yes warning will be displayed
3- No - so if form1 succeds and form 2 fails - form1 would still post data since it succeeeded
4- Why not use patch to update the record (form2) only when form1 is successul (you can use the onsuccess property of form1 to patch/update the record)
Regards,
Reza Dorrani
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Oh yes you are right! I didnt thought of using Onsuccess to submit another form.
User | Count |
---|---|
140 | |
137 | |
77 | |
76 | |
69 |
User | Count |
---|---|
224 | |
186 | |
68 | |
64 | |
57 |