Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi!
I got a query that connects to the “newest” *.xlsx file in a folder, that is automatically created every night.
Its easy to filter out the latest file due to the naming. “Excel2023050506 00 36.xlsx” *(yyyymmddhh mm ss).
This has worked fine, until the file contained more than 30 000 rows that seems to be the limit, despite its an excel file…
Note: If I connect a query to the latest file directly, it works fine, but not when using this dynamic way.
I’m quite new to power query and searching for an answer 🙂
Hi @tomand05 ,
I created a test folder with 30,000+ excel files and my steps are as follows for your reference.
Get data --> folder --> transform data --> select Name column and right-click --> Sort Descending
Keep the first row;
Power bi Desktop [Version: 2.116.622.0 64-bit (April 2023)
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Hi!
It’s not 30 000 files... It’s more than 30 000 rows of data in the excel file .
Hi @tomand05 ,
How does your query look like? Could you share it?
Do you get an error for that particular file, if so which one?
Regards,
Hi!
I hoop this is the correct parts of the query
Exempelfil meta [IsParameterQuery=true, BinaryIdentifier=Exempelfil, Type="Binary", IsParameterQueryRequired=true]
let
Källa = Folder.Files("\\aaa\bbb\ccc\ddd\AXIntegration\CSandWHD\Reports"),
#"Filtrerade rader" = Table.SelectRows(Källa, each not Text.StartsWith([Name], "~")),
#"Sorterade rader" = Table.Sort(#"Filtrerade rader",{{"Name", Order.Descending}}),
#"Behåll första rader" = Table.FirstN(#"Sorterade rader",1),
Navigering1 = #"Behåll första rader"{0}[Content]
in
Navigering1
let
Källa = (Parameter1 as binary) => let
Källa = Excel.Workbook(Parameter1, null, true),
#"Ax Data_Sheet" = Källa{[Item="Ax Data",Kind="Sheet"]}[Data],
#"Upphöjda rubriker" = Table.PromoteHeaders(#"Ax Data_Sheet", [PromoteAllScalars=true]),
#"Ändrad typ" = Table.TransformColumnTypes(#"Upphöjda rubriker",{{"ItemId", Int64.Type}, {"Deleted part", type text}})
in
#"Ändrad typ"
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 | |
| 3 | |
| 2 |