Table.TransformRows
Trasforma le righe della tabella utilizzando la funzione di trasformazione specificata.
Syntax
Table.TransformRows(
table as table,
transform as function
) as list
Remarks
Crea un elenco
applicando l'operazione transform
a ogni riga in table
.
Examples
Example #1
Trasformare le righe di una tabella in un elenco di numeri.
Table.TransformRows(
Table.FromRecords({
[a = 1],
[a = 2],
[a = 3],
[a = 4],
[a = 5]
}),
each [a]
)
Result:
{1, 2, 3, 4, 5}
Example #2
Trasformare le righe di una tabella numerica in record testuali.
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