Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hello,
I would need an assistance with M code.
Namely, excel files are stored on the sharedrive and Power Bi only needs the newest file from the folder (the file with the latest date created). The file names are standardized except the date part: SI Dashboard Data - FY17 - 2017-05-22
The report has set sceduled refresh and each time Power BI should replace the old file with the newest.
I put filters to extract file by SI Dashboard name and by the latest date created.
Here is the M code but it doesn't work when the new file is saved on the drive. I guess some variable for latest date should be introduced but i have no idea how.
Could you please shed a light on this? Highly appreciated.
let
Source = SharePoint.Files("https://dimensiondata-my.sharepoint.com/personal/bojana_sokica_dimensiondata_com/", [ApiVersion = 15]),
#"Filtered by xlsx" = Table.SelectRows(Source, each ([Extension] = ".xlsx")),
#"Filtered by FileName" = Table.SelectRows(#"Filtered by xlsx", each Text.StartsWith([Name], "SI Dashboard")),
#"Filtered by Newest Date" = Table.SelectRows(#"Filtered by FileName", let latest = List.Max(#"Filtered by FileName"[Date created]) in each [Date created] = latest),
#"SI Dashboard - SLA Performance - FY17 - 2017-05-22-07-20-04 xlsx_https://dimensiondata-my sharepoint com/personal/bojana_sokica_dimensiondata_com/Documents/data/" = #"Filtered by Newest Date"{[Name="SI Dashboard - SLA Performance - FY17 - 2017-05-22-07-20-04.xlsx",#"Folder Path"="https://dimensiondata-my.sharepoint.com/personal/bojana_sokica_dimensiondata_com/Documents/data/"]}[...],
#"Imported Excel" = Excel.Workbook(#"SI Dashboard - SLA Performance - FY17 - 2017-05-22-07-20-04 xlsx_https://dimensiondata-my sharepoint com/personal/bojana_sokica_dimensiondata_com/Documents/data/"),
Detail_Sheet = #"Imported Excel"{[Item="Detail",Kind="Sheet"]}[Data]
in
Detail_Sheet
Solved! Go to Solution.
Hi @Boja,
Based on my test, The M code below should work in this scenario.
let Source = SharePoint.Files("https://mytenant.sharepoint.com/teams/abc", [ApiVersion = 15]), #"Sorted Rows" = Table.Sort(Source,{{"Name", Order.Descending}}), #"Kept First Rows" = Table.FirstN(#"Sorted Rows",1), #"Invoke Custom Function1" = Table.AddColumn(#"Kept First Rows", "Transform File from Query1", each #"Transform File from Query1"([Content])), #"Renamed Columns1" = Table.RenameColumns(#"Invoke Custom Function1", {"Name", "Source.Name"}), #"Removed Other Columns1" = Table.SelectColumns(#"Renamed Columns1", {"Source.Name", "Transform File from Query1"}), #"Expanded Table Column1" = Table.ExpandTableColumn(#"Removed Other Columns1", "Transform File from Query1", Table.ColumnNames(#"Transform File from Query1"(#"Sample File"))), #"Changed Type" = Table.TransformColumnTypes(#"Expanded Table Column1",{{"Source.Name", type text}, {"Product", type text}, {"Category", type text}, {"Segment", type text}, {"ManufacturerID", Int64.Type}, {"Manufacturer", type text}}) in #"Changed Type"
In addition, here is a good article about loading the newest excel file from a Folder which is similar to loading from SharePoint Folder for your reference.
Regards
Hi @Boja,
Based on my test, The M code below should work in this scenario.
let Source = SharePoint.Files("https://mytenant.sharepoint.com/teams/abc", [ApiVersion = 15]), #"Sorted Rows" = Table.Sort(Source,{{"Name", Order.Descending}}), #"Kept First Rows" = Table.FirstN(#"Sorted Rows",1), #"Invoke Custom Function1" = Table.AddColumn(#"Kept First Rows", "Transform File from Query1", each #"Transform File from Query1"([Content])), #"Renamed Columns1" = Table.RenameColumns(#"Invoke Custom Function1", {"Name", "Source.Name"}), #"Removed Other Columns1" = Table.SelectColumns(#"Renamed Columns1", {"Source.Name", "Transform File from Query1"}), #"Expanded Table Column1" = Table.ExpandTableColumn(#"Removed Other Columns1", "Transform File from Query1", Table.ColumnNames(#"Transform File from Query1"(#"Sample File"))), #"Changed Type" = Table.TransformColumnTypes(#"Expanded Table Column1",{{"Source.Name", type text}, {"Product", type text}, {"Category", type text}, {"Segment", type text}, {"ManufacturerID", Int64.Type}, {"Manufacturer", type text}}) in #"Changed Type"
In addition, here is a good article about loading the newest excel file from a Folder which is similar to loading from SharePoint Folder for your reference.
Regards
Hey, would you mind teliing me if we should save this code as a macro and then run it ?
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
29 | |
12 | |
12 | |
11 | |
8 |
User | Count |
---|---|
53 | |
27 | |
15 | |
14 | |
13 |