【发布时间】:2020-03-14 10:09:06
【问题描述】:
我正在尝试使用带有 Microsoft Flow 的 Power BI 数据集进行每日更新。这是我目前的情况:
- 每天早上都会以 .xls 格式将报告导出到 SharePoint
- 我打开 Excel 以刷新 Power Query,该 Power Query 将报表中的数据提取为仪表板和 MS Flow 的格式 (我尝试直接安排对 Power BI 的刷新,但似乎无法安排对 .xls 的刷新)
- MS Flow 和 Power BI 刷新包含查询数据的 .xlsx 文件
有没有办法避免手动打开 Excel 并在 Power Query 上点击刷新的步骤?
let
Source = SharePoint.Files("https://xxxxxxxxxx", [ApiVersion = 15]),
FileContent = Source{[Name = "Individual Status.xls"]}[Content],
ParsedTable = ParseXls(FileContent, "Individual Status")
in
Source
Expression.Error: We cannot convert the value "Individual Status" to type Binary.
Details:
Value=Individual Status.xls
Type=[Type]
【问题讨论】:
标签: powerbi powerquery