cancel
Showing results for 
Search instead for 
Did you mean: 
darogael

Export to CSV from Power Apps

Introduction:

The blog walks you through how you can export items from a gallery into a CSV using Power Automate with a OneDrive for Business connection.

 

Requirements:

  1. A Power App with a data connection to provide data for a gallery
  2. A Power Automate flow which data connection to OneDrive for Business

 

Step 1: Create and send the data from Power App.

Have an app created with a gallery that contains the data you need. You can even provide the option to filter the gallery based on the item selected from the drop down control.

 

We then collect all the items from the gallery in a temporary collection called ExportCSVCol. Then data from this collection is appended to a Set variable, to make sure the data is saved row-by-row we use the Char(10) at the end.

Finally the external variable is set to OneDrive to make the conversion to CSV using flow. Here is a screenshot of the formula:

 

Capture1.JPG

Step 2: Convert the data from Power App into a CSV file.

We now create a three step flow in Power Automate to receive the data from our app and convert it into a CSV file using OneDrive for Business. The converted CSV file is stored in OneDrive.

Important: It is important to note that this is a temporary file that must remain in OneDrive for Business and SHOULD NOT BE DELETED. You will be referencing this file in your app to download the CSV. This CSV file is auto-updated.

 

Here is a screenshot of the flow

Capture2.JPG

Step 3: Download the CSV file

In your Power App go back to the button you built in Step2 and add the remaining formula at the end. Notice the &Download=1 at the end? That is what forces the CSV file to download. The HTTP URL is what you get from OneDrive, the video walks you through the steps.

picture4.png

Here is a screenshot of the entire formula for the button

Capture3.JPG

Video:

This video walks you through the entire process step-by-step.

 

Conclusion:

Following the steps provided you can successfully export items from the gallery as a CSV file. By default the gallery will hold only 500 items. You can increase that to 2000 by changing the Data row limit in Advance Settings or you can add more filters to the gallery to only get the data you desire.

Comments