Intermediate Power Query in Excel
Lyndsay Girard
Performance Analytics Consultant
let
MyTable = Table.FromRecords({
[ID = 1, Name = "A", Result = 10],
[ID = 2, Name = "B", Result = 5]})
in
MyTable
Intermediate Power Query in Excel