RowExpression.Column
This function generates an abstract syntax tree (AST) that indicates how to access the specified column (columnName) within a row expression.
This function generates an abstract syntax tree (AST) that indicates how to access the specified column (columnName) within a row expression.
Generates an Abstract Syntax Tree (AST) that denotes the access of the column named "CustomerName". This is achieved by using Power Query's MRowExpression.Column("CustomerName") function, which produces the output shown below:
[
Kind = "FieldAccess",
Expression = RowExpression.Row,
MemberName = "CustomerName"
]