Forum Discussion
Anonymous
3 years agoNot applicable
Argument in AddColumn Function
= Table.AddColumn( #"Changed Type", "DoubleNumbers", each [Numbers] * 2 ) I am wondering whether in this function, #"Changed Type" is a table. Because the syntax of Table.Ad...
- 3 years ago
In most cases each step in a query should be a table. In this case the #"Changed Type" refers to the result of the previous step, which is a table, not a function.
artemus
Microsoft Employee
3 years agoIn most cases each step in a query should be a table. In this case the #"Changed Type" refers to the result of the previous step, which is a table, not a function.