(Power Query) - Cheatsheet
(Power Query) - Cheatsheet
Loading Data
Data Transformation
Date Operations
Text Operations
Data Aggregation
Data Integration
Data Cleaning
Statistical Operations
Data Export
● Export to CSV: =
Csv.Write(Table.TransformColumnTypes(Source,{{"Column", type
text}}), "file.csv", [Delimiter=','])
● Export to Excel: =
Excel.Workbook(Table.TransformColumnTypes(Source,{{"Column", type
text}}))
● Write to JSON: = Json.FromValue(Source)
● Export to XML: = Xml.Tables(Source)
Custom M Functions
Miscellaneous