Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

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...
  • artemus's avatar
    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.