Forum Discussion
GiantsFan1989
1 year agoFrequent Visitor
PowerBI Semantics Model - Error When Refreshing
Hi All, I am new to PowerBI and, for the most part, self taught. I have created a few reports in the PowerBI App and published the reports to my personal workspace to test functionality. When I...
- 1 year ago
Based on the first screenshot, Power BI is connected to the local copy of the file stored in SharePoint. You will need to connect to the version stored in SharePoint and then republish the pbix. You will need to change your Source applied step from
Excel.Workbook(File.Contents("localpath.xlsx"), null, true)to
Excel.Workbook(Web.Contents("sharepointpath.xlsx"), null, true)
danextian
1 year agoSuper User
Based on the first screenshot, Power BI is connected to the local copy of the file stored in SharePoint. You will need to connect to the version stored in SharePoint and then republish the pbix. You will need to change your Source applied step from
Excel.Workbook(File.Contents("localpath.xlsx"), null, true)
to
Excel.Workbook(Web.Contents("sharepointpath.xlsx"), null, true)
- GiantsFan19891 year agoFrequent Visitor
This worked. Thank you!