Dear All,
I am using my Powerapps to start a flow with the Powerapps trigger.
Normally I use the formula from an existing "ticket" in Powerapps with a formula like this: CLRformSubmited.Run(TemplateGalleryList2.Selected.ID);SubmitForm(Form6_1);ViewForm(Form6_1).
So right now I use the selected ID from the Template Gallery, This works.
But right now I am trying to create the same action for a new ticket, so I probably have to use a Run(Form1.(....));SubmitForm(Form6_1). Can someone help me fill in the dots? (Powerapps ask me for Run(GetItem_ID)
Thanks!
Ramon
Solved! Go to Solution.
You can use the LastSubmit property of a form to retrieve the most recent ID number submitted from the form.
I would suggest you use this code in the OnSelect property of the form's submit button
SubmitForm(Form6_1)
Then use this code in the OnSuccess property of the form. This will ensure the Flow only triggers if the form submission is successful.
CLRformSubmited.Run(Form6_1.LastSubmit.ID);
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
You can use the LastSubmit property of a form to retrieve the most recent ID number submitted from the form.
I would suggest you use this code in the OnSelect property of the form's submit button
SubmitForm(Form6_1)
Then use this code in the OnSuccess property of the form. This will ensure the Flow only triggers if the form submission is successful.
CLRformSubmited.Run(Form6_1.LastSubmit.ID);
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
User | Count |
---|---|
184 | |
124 | |
90 | |
45 | |
43 |
User | Count |
---|---|
267 | |
160 | |
128 | |
81 | |
75 |