Power Query
published
Search
K

List.Transform

List.Transform

Returns a new list of values computed from this list.
function (list as list, transform as function) as list

Description

Returns a new list of values by applying the transform function transform to the list, list.

Category

List.Transformation functions

Examples

Add 1 to each value in the list {1, 2}.
List.Transform({1, 2}, each _ + 1)
{2, 3}