RowExpression.Column

This function generates an abstract syntax tree (AST) that indicates how to access the specified column (columnName) within a row expression.

Syntax

RowExpression.Column(columnName as text) as record

About

This function generates an abstract syntax tree (AST) that indicates how to access the specified column (columnName) within a row expression.

Explanation

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" ]