We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
We are trying to ingest multiple gzipped CSV files for a project. We can ingest a single gzipped file with the following:
let
Source = File.Contents("C:\Users\username\something.csv.gz"),
Decompressed = Binary.Decompress(Source, Compression.GZip),
#"Imported CSV" = Csv.Document(Decompressed,[Delimiter=",", Columns=28, Encoding=1252, QuoteStyle=QuoteStyle.None]),
#"Promoted Headers" = Table.PromoteHeaders(#"Imported CSV", [PromoteAllScalars=true]),
#"Changed Type" = ....snipped...
in
#"Changed Type"And we can import multiple plain CSV files from a directory using the directory source type. What I can't figure out how to do is to import multiple gzipped files in a directory. How do we apply the "Binary.Decompress" to each file in a directory as part of the load?
Solved! Go to Solution.
@thomas_pike ,
You can create a function in Power BI Desktop as discussed in this similar thread, then invoke this function.
Regards,
Lydia
@thomas_pike ,
You can create a function in Power BI Desktop as discussed in this similar thread, then invoke this function.
Regards,
Lydia
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 |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 10 | |
| 8 | |
| 7 | |
| 7 | |
| 5 |