
Announcements
■Situation
We are considering creating the following flow in PowerAutomate and executing it when a button is pressed in PowerApps.
We are retrieving data from a list in SPO and processing the target data one row at a time using the "Add Rows to Table" function in an excel file. This add operation is described continuously in "Apply to each".
After that, we create a shared link and download the created file on PowerApps.
The download of the Excel file has been implemented, but the download process starts before all the items are filled out in Excel.
※The control to be executed on PowerApps is as follows
UpdateContext(
{
Response: Exceloutput_onedriveVer.Run(lbl_InspectedDate.Text)
}
);
UpdateContext({ResultUrl: Response.onedrivelink});
Download(ResultUrl);
■Questions
I would like to know how to control the download process so that it is executed after the addition of rows to Excel is completed.
Thanks.
In your flow disable the parallelism as needed (in the settings for the loop)