Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi ,
I want to create an extract from power bi , I have the necessary data by joining mutiple data sources , but not sure how to automate the "Export Data" option that we see in the BI dashboard . Appreciate your kind suggestion will be appreciated.
Regards,
Solved! Go to Solution.
@abhijitroy99 If you want to automate, check out the Power BI REST API. Reports - Export To File (Power BI Power BI REST APIs) | Microsoft Docs
Hi @abhijitroy99 ,
Currently you could not export data automatically from power bi dashboard directly.
You can try to run R script for your dataset and set scheduled refresh for it to export data automatically.
write.csv(dataset, file = "C:/dataset.csv")
Note:
For more details, you can refer this article and video which introduce it in details:
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @abhijitroy99 ,
Currently you could not export data automatically from power bi dashboard directly.
You can try to run R script for your dataset and set scheduled refresh for it to export data automatically.
write.csv(dataset, file = "C:/dataset.csv")
Note:
For more details, you can refer this article and video which introduce it in details:
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@abhijitroy99 If you want to automate, check out the Power BI REST API. Reports - Export To File (Power BI Power BI REST APIs) | Microsoft Docs
I am checking how this can be achieved.