If I have the following source:
#"My Source" = Table.FromRecords({
[Name="Jared Smith", Age=24],
[Name = "Tom Brady", Age=44],
[Name="Hello Tom", Age = null],
[Name = "asdf", Age = "abc"]
}),
How would I add a new column from a list of values, for example:
Table.AddColumn(#"My Source", "New Col", {'x', 'y', 'z', null})
Now my table would have three columns. How could this be done?