Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
paulrothman
New Member

Data Source Settings not showing my full list of downloads

The first screenshot is my PowerBI desktop app when I click "Transform Data" -> "Data Source Settings". 

PowerBI only shows me 5 random downloads from my downloads folder. 

I need to connect the zip folder downloads for "Overdue", "RAG Status", and "Priority Status".

Any advice? 

Thank you in advance.

 

 

Power BI Downloads Input.PNGDownloads Needed for PowerBI.PNG

1 ACCEPTED SOLUTION
v-yingjl
Community Support
Community Support

Hi @paulrothman ,

Folder connecto only distinguish normal folders instead of .zip format. If you want to connect to .zip files in power bi, you can try to use power query. Please refer this blog and these threads:

  1. Reading Zip files in PowerQuery / M 
  2. Trying to extract files from ZIP 
  3. PowerQuery read from folder with many zip file 

Basically the query is like this:

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"

 

Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
v-yingjl
Community Support
Community Support

Hi @paulrothman ,

Folder connecto only distinguish normal folders instead of .zip format. If you want to connect to .zip files in power bi, you can try to use power query. Please refer this blog and these threads:

  1. Reading Zip files in PowerQuery / M 
  2. Trying to extract files from ZIP 
  3. PowerQuery read from folder with many zip file 

Basically the query is like this:

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"

 

Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

PhilipTreacy
Super User
Super User

Hi @paulrothman 

You should extract the contents of the ZIP files then use the Folder connector or File connector to load what you need from within a query, rather than going through the Data Source Settings dialog.

You culd open th ZIP's but it's not easy - refer to this https://community.powerbi.com/t5/Community-Blog/Working-With-Zip-Files-in-Power-Query/ba-p/1190186

Regards

Phil


If I answered your question please mark my post as the solution.
If my answer helped solve your problem, give it a kudos by clicking on the Thumbs Up.



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.