Power BI - Data Cleaning with Power Query
Consider this Power Query M code:
What will be the column headers after this query executes?
let
Source = Table.FromRows({{"Product", "Price"}, {"Pen", 1.5}, {"Book", 12}}),
Promoted = Table.PromoteHeaders(Source)
in
PromotedWhat will be the column headers after this query executes?
