Hi Mates,
i would like to call flow with ForAll, but normally its not throws error, but when run the flow then it show error
Yes as you see we need two input parameters from Powerapps to Flow, how refer intStartnum, intCount parameters.
highly appreciated for your help.
Solved! Go to Solution.
@kmk ,
I think the way you have defined your collection is wrong. Try something like this :
ClearCollect( myTable,
Table(
{ 'Quantity Requested': 6, 'Quantity Available': 3 },
{ 'Quantity Requested': 10, 'Quantity Available': 20 },
{ 'Quantity Requested': 4, 'Quantity Available': 11 },
{ 'Quantity Requested': 7, 'Quantity Available': 6 }
)
)
Replace it with your fields, ofcourse.
Regards,
KK
What is the type of your parameters in flow? Can you post a screenshot where you initialize both the variables?
@kmk ,
I think the way you have defined your collection is wrong. Try something like this :
ClearCollect( myTable,
Table(
{ 'Quantity Requested': 6, 'Quantity Available': 3 },
{ 'Quantity Requested': 10, 'Quantity Available': 20 },
{ 'Quantity Requested': 4, 'Quantity Available': 11 },
{ 'Quantity Requested': 7, 'Quantity Available': 6 }
)
)
Replace it with your fields, ofcourse.
Regards,
KK
Really great, working as excepted
ClearCollect( myTable,
Table(
{ StarNumber:1, QuantityMigrate: 20 }));
ForAll(myTable, PowerAppsbutton.Run(QuantityMigrate,StarNumber))
//Set(varGetResponce,PowerAppsbutton.Run(20,30))
but if you see below commented, earlier i used to set variable(VarGetResponce.error) this will give status of the flow, so can you also help me how can variable in ForAll else if i set out side then how to get response from flow.
i also want to use vargetresponce by any chance can we set it in ForAll like
ForAll(myTable,Set(varGetResponce,PowerAppsbutton.Run(QuantityMigrate,StartNumber)))
Final help if possible
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
259 | |
126 | |
86 | |
85 | |
68 |