Table.TransformRows
Transforms the rows of the table using the specified transform function.
Syntax
Table.TransformRows(
table as table,
transform as function
) as list
Remarks
Creates a list
by applying the transform
operation to each row in table
.
Examples
Example #1
Transform the rows of a table into a list of numbers.
Table.TransformRows(
Table.FromRecords({
[a = 1],
[a = 2],
[a = 3],
[a = 4],
[a = 5]
}),
each [a]
)
Result:
{1, 2, 3, 4, 5}
Example #2
Transform the rows of a numeric table into textual records.
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