How To Extract data from Sharepoint Online using Power BI
How To Extract data from Sharepoint Online using Power BI
Code Snippet as below:
let
Source = SharePoint.Files("https://XYZ.sharepoint.com/", [ApiVersion = 15]),
#"Sprint Backlog.xlsx_https://XYZ.sharepoint.com/Reporting Forms/" = Source{[Name="Sprint Backlog.xlsx",#"Folder Path"="https://XYZ.sharepoint.com/Reporting Forms/"]}[Content],
#"Imported Excel" = Excel.Workbook(#"Sprint Backlog.xlsx_https://XYZ.sharepoint.com/Reporting Forms/")
in
#"Imported Excel"
Comments
Post a Comment