Table.TransformRows
This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.
Transforms the rows from a table using a transform function.
Table.TransformRows(table as table, transform as function) as list
| Argument | Description |
|---|---|
| table | The Table to modify. |
| transform | The transform function to use. |
- Table.TransformRows is similar to List.Transform but requires a table as input.
Table.TransformRows( Table.FromRecords({[A=1], [A=2], [A=3], [A=4], [A=5]}), each [A]) equals {1, 2, 3, 4, 5}
Show: