Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi all,
Is there a way to load to powerquery in powerBI folder with many zip file?
I succeed to load all the zip files but when drill done got only non read data (GIBBERISH.)
I succeed to load one zip file using the excellent to below link:
http://www.excelandpowerbi.com/?p=155
Solved! Go to Solution.
Hi @nirrobi,
Firstly, create UnzipContents function in Power BI Desktop following the instructions in this blog.
Secondly, choose "New Source -> Blank Query", open the advanced editor and paste the following code, please replace the path to your own path.
let path = "Path\Zipfolder", Source = Folder.Files(path), #"Filtered Rows to only .zip" = Table.SelectRows(Source, each ([Extension] = ".zip")), #"Removed Other Columns" = Table.SelectColumns(#"Filtered Rows to only .zip",{"Content"}), #"Added Custom UnzipContents" = Table.AddColumn(#"Removed Other Columns", "Custom", each UnzipContents([Content])) in #"Added Custom UnzipContents"
Thanks,
Lydia Zhang
Hi @nirrobi,
Firstly, create UnzipContents function in Power BI Desktop following the instructions in this blog.
Secondly, choose "New Source -> Blank Query", open the advanced editor and paste the following code, please replace the path to your own path.
let path = "Path\Zipfolder", Source = Folder.Files(path), #"Filtered Rows to only .zip" = Table.SelectRows(Source, each ([Extension] = ".zip")), #"Removed Other Columns" = Table.SelectColumns(#"Filtered Rows to only .zip",{"Content"}), #"Added Custom UnzipContents" = Table.AddColumn(#"Removed Other Columns", "Custom", each UnzipContents([Content])) in #"Added Custom UnzipContents"
Thanks,
Lydia Zhang
Super helpful! Thank you.
thanks a lot!!!!!!
I forgot to change the name of the queries to unzip...
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
75 | |
63 | |
52 | |
47 |
User | Count |
---|---|
218 | |
86 | |
64 | |
63 | |
60 |