Data Transformation in Power BI
Maarten Van den Broeck
Content Developer at DataCamp
The advanced editor allows you to view and edit the underlying code of your query
Any transformation you make to your data is translated into M code (also referred to as M Language) - the language of Power Query
DAX code allows you to analyze your data, M code allows you to transform and load it
Power BI
Power Query
//
Value types in M language:
123
"DataCamp"
true
1/20/2022
{123, "DataCamp", true}
#table( {"Index", "Value"}, {{"A", 123}, {"B", "DataCamp"}, {"C", true}})
Table created by example code:
Data Transformation in Power BI