Hi,
I have a Data Table in Canvas app. So, I want to export data from Data Table to Excel. Could you please suggest some approaches.
Thanks
Durga
Works perfectly 😀
To implement this I created a view with required columns in backend SharePoint list to match data from DataTable.
Then created below url for downloading view data to excel:
{Site URL}/_vti_bin/owssvr.dll?CS=109&Using=_layouts/query.iqy&List={LIST ID}&View={View ID}
Then in PowerApps added one button. Set "OnSelect" property to launch above url.
Launch("URL",{},LaunchTarget.New)
This way we can download the data to excel. We can add filters to the view to match the data from DataTable.
Sharing this idea as it might help someone with similar need.
Let me know if there is any other way of implementing this.
Hi v-xida-msft,
Thanks for your reply.
Our requirement: We pull and show data in apps from Azure SQL Server and our users wanted this data to be exported to excel from DataTable.
Let me try this option and check whether all users can export data or not.
Also, we would like to know: is Role based permissions available in PowerApps?
Thanks
Durga
Hi @Durga ,
Do you want to export data from a Data Table control into a Excel file?
If you want to export data from a Data Table control into a Excel file, I afraid that there is no way to achieve your needs in PowerApps currently. There is no functionality or functions supported within PowerApps to export data from a Data Table.
In addition, within PowerApps, there is no way to select all items/records within a Data Table once time. As an alternative solution, you could consider list your records using a Gallery instead of Data Table. You could configure the Gallery control works as a Data Table.
On your side, you could create a Excel file in your cloud service, e.g. OneDrive. Add columns within this Excel file, and format it as a Excel table. Within your app, create a connection to this Excel table.
After that, you could configure your data in your Data table into a Gallery as below:
Set the OnSelect property fo the "Patch" button to following:
ForAll(
Gallery1.AllItems,
Patch(
OriginalTable,
Defaults(OriginalTable),
{
ProjectName: Label3.Text,
'Due Date': DateValue(Label5.Text),
Executor: Label9.Text
}
)
)
Note: The Label3, Label5 and Label9 represents the Label controls within your Gallery, which used to display corresponding column value.
On your side, you may type:
ForAll(
Gallery1.AllItems,
Patch(
YourExcelTable,
Defaults(YourExcelTable),
{
Column1: Label1.Text,
Column2: Label2.Text,
Column3: Label3.Text,
...
}
)
)
More details about the Patch function, please check the following article:
Also please check and see if my response within the following thread would also help in your scenario:
Best regards,
Hi @Durga ,
MS.Ragavendar
20
BCBuizer
10
Super User 2025 Season 1
LC-26081402-0
10