I have a dataset that is updated in PowerBI every 24hours.
Currently I am exporting this data and using a data connection in another excel file to filter it to a manageable list with a couple of formatting rules as well as to trigger a Flow
The flow is triggered based on that file being modified to kick off a complete refresh of a SharePoint list. Delete all items in the SharePoint list, every row in the excel table will get added as a new item in the SharePoint list and data is then available for a Powerapp to access.
I am trying to find a way to remove the manual steps of exporting the Power BI report and getting it into MS Flow.
PowerBI doesn't currently have an automated export function that I can see, whether by email or to a saved file.
It looks like flow can currently add rows to a Power BI dataset but has no way of reading/retrieving data.
I've also found PowerBI Publisher for Excel add in that will remove the manual step of exporting the data, but still have no way of triggering a refresh from Flow
Any ideas?
Thanks
Hi @DM2018
As indicated there was no direct way of doing this but I did find a workaround:
Set xl = CreateObject("Excel.Application")
xl.Visible = True
For Each f In fso.GetFolder("C:\FOLDER THE EXCEL FILE IS IN").Files
If LCase(fso.GetExtensionName(f.Name)) = "xlsx" Then
Set wb = xl.Workbooks.Open(f.Path)
xl.Visible = false
wb.RefreshAll
xl.DisplayAlerts = False
wb.Close True
xl.DisplayAlerts = True
End If
Next
xl.Quit"
I have also been advised to look into using Powershell instead of task schedular but haven't had a chance yet.
Outcome being you have a "table formatted" dataset that is automatically refreshed from PowerBI at your schedule which is then accessible by MS Flow
Hopefully this helps. Lots of stuff you can find on the VBS script and task schedular online
@mnmsymmons this is exactly what I'm looking for. Did you manage to find a solution?
Hi @mnmsymmons,
I am afraid that the supported triggers and actions of Microsoft Flow cannot achieve your requirement currently.
If you want Microsoft Flow to be able to access Power BI data, or expand more of the features you want about Power BI connector, please submit an idea to Flow Ideas Forum:
https://powerusers.microsoft.com/t5/Flow-Ideas/idb-p/FlowIdeas
Best Regards,
Barry
Michael E. Gernaey
566
Super User 2025 Season 1
David_MA
516
Super User 2025 Season 1
stampcoin
492