अंग्रेज़ी में पढ़ें

इसके माध्यम से साझा किया गया


RowExpression.Column

Syntax

RowExpression.Column(columnName as text) as record

About

Returns an abstract syntax tree (AST) that represents access to column columnName of the row within a row expression.

Example 1

Creates an AST representing access of column "CustomerName".

Usage

Power Query M
RowExpression.Column("CustomerName")  

Output

Power Query M
[
    Kind = "FieldAccess",
    Expression = RowExpression.Row,
    MemberName = "CustomerName"
]