Power Query
published
Search
⌃K

RowExpression.Column

RowExpression.Column

Returns an AST that represents access to a column within a row expression.
function (columnName as text) as record

Description

Returns an AST that represents access to column columnName of the row within a row expression.

Category

Table.Table construction

Examples

Creates an AST representing access of column "CustomerName".
RowExpression.Column("CustomerName")
[ Kind = "FieldAccess", Expression = RowExpression.Row, MemberName = "CustomerName" ]