List.Transform
Bu listeden hesaplanan yeni bir değer listesi döndürür.
Syntax
List.Transform(
list as list,
transform as function
) as list
Remarks
list
listesine transform
dönüştürme işlevi uygulayarak yeni bir değer listesi döndürür.
Examples
Example #1
{1, 2} listesindeki her öğeye 1 ekler.
List.Transform({1, 2}, each _ + 1)
Result:
{2, 3}
Category
List.Transformation functions