Guest User

Untitled

a guest
Jan 18th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. // sample usage from m language query using a function (also works for multiple input files):
  2.  
  3. let
  4. Source = File.Contents("C:\Users\xxx\Documents\data.csv.gz"),
  5. #"Decompressed" = Table.AddColumn(Source, "Data", each UnzipCsv([Content], 16))
  6. in
  7. #"Decompressed"
  8.  
  9. // now you can expand your Data column and proceed
Add Comment
Please, Sign In to add comment