メインコンテンツまでスキップ

Table.TransformRows

指定された変換関数を使用してテーブルの行を変換します。

Syntax

Table.TransformRows(
table as table,
transform as function
) as list

Remarks

table の各行に transform 操作を適用して、リストを作成します。

Examples

Example #1

テーブルの行を数値のリストに変換します。

Table.TransformRows(
Table.FromRecords({
[a = 1],
[a = 2],
[a = 3],
[a = 4],
[a = 5]
}),
each [a]
)

Result:

{1, 2, 3, 4, 5}

Example #2

数値テーブルの行をテキスト レコードに変換します。

Table.TransformRows(
Table.FromRecords({
[a = 1],
[a = 2],
[a = 3],
[a = 4],
[a = 5]
}),
(row) as record => [B = Number.ToText(row[a])]
)

Result:

{
[B = "1"],
[B = "2"],
[B = "3"],
[B = "4"],
[B = "5"]
}

Category

Table.Transformation