We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
I created a several dashboards using XML files located on my hardrive. I have setup a Sharepoint so my corworker and I can work from the same data tables. How can I replace the XML files located on my hardrive with the same XML files located on Sharepoint?
Solved! Go to Solution.
@rygregg10,
You can change the source code of the current query to SharePoint Folder in Advanced Editor of Power BI Desktop Query Editor .
Assume that your original code of the query is as below.
Then you can change the code to the following:
let
Source = SharePoint.Files("SharePoint site root URL ", [ApiVersion = 15]),
#"Filtered Rows" = Table.SelectRows(Source, each ([Folder Path] = "SharePoint site root URL/Shared Documents/sharepoint Foldername/")),
#"Removed Other Columns" = Table.SelectColumns(#"Filtered Rows" ,{"Content"})
in
#"Removed Other Columns"
Regards,
Lydia
@rygregg10,
You can change the source code of the current query to SharePoint Folder in Advanced Editor of Power BI Desktop Query Editor .
Assume that your original code of the query is as below.
Then you can change the code to the following:
let
Source = SharePoint.Files("SharePoint site root URL ", [ApiVersion = 15]),
#"Filtered Rows" = Table.SelectRows(Source, each ([Folder Path] = "SharePoint site root URL/Shared Documents/sharepoint Foldername/")),
#"Removed Other Columns" = Table.SelectColumns(#"Filtered Rows" ,{"Content"})
in
#"Removed Other Columns"
Regards,
Lydia
Use SharePoint Folder connector.
Found under "All" section of Get Data.
URL should be set folder containing all your files.
Ex: https://CompanyName.sharepoint.com/sites/foldername/
Try following article in link below.
https://powerbi.microsoft.com/en-us/blog/combining-excel-files-hosted-on-a-sharepoint-folder/
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 6 | |
| 4 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 7 | |
| 7 | |
| 6 |