List.Transform

Generates a fresh set of values by implementing the transformation function "transform" on the given list named "list".

Syntax

List.Transform(list as list, transform as function) as list

About

Generates a fresh set of values by implementing the transformation function "transform" on the given list named "list".

Explanation

Increase each number by 1 in the list {1, 2}. To perform this operation using Power Query MList, use the Transform function with the formula each _ + 1. The output after applying this transformation will be {2, 3}.