Hi all,
I wan't to initiate two diferentes requests using PowerApps with one Collection, the best example:
FirstName | LastName | Required |
User1 | something | Yes |
User2 | something2 | No |
A button initiate two flows, user1 contains required as "Yes" initiate flow 1, the user that contains "No" initiate flow 2
Thank you all
Solved! Go to Solution.
Hi @Rubenfrreis ,
Just want to make some supplements to make the solution more perfect.
I assume :
You have two flows, they are Test1 and Test2.
Add a button control and set its onselect property to:
ForAll(YourCollection,If(ThisRecord.Required="Yes",Test1.Run(),ThisRecord.Required="No",Test2.Run()))
Best Regards,
Wearsky
If my post helps, then please consider Accept it as the solution to help others. Thanks.
just use the condition option. have "Required" = yes ...and one side is yes the other side is everything else ...or "No"
Can you exemplify? just a dummy code line, I'm not seeing how to achieve this.
(A button to start to send data to two different flows)
you don't need 2 flows you can just do it all from one
here is a video to explain how to use the condition control in power automate
https://www.youtube.com/watch?v=GfWKTd2JiMQ
Hi @Rubenfrreis ,
Just want to make some supplements to make the solution more perfect.
I assume :
You have two flows, they are Test1 and Test2.
Add a button control and set its onselect property to:
ForAll(YourCollection,If(ThisRecord.Required="Yes",Test1.Run(),ThisRecord.Required="No",Test2.Run()))
Best Regards,
Wearsky
If my post helps, then please consider Accept it as the solution to help others. Thanks.
User | Count |
---|---|
260 | |
109 | |
93 | |
56 | |
41 |