List.Accumulate
Akkumulerer en opsamlingsværdi fra elementer på listen.
Syntax
List.Accumulate(
list as list,
seed as any,
accumulator as function
) as any
Remarks
Akkumulerer en opsamlingsværdi fra elementerne på listen list
ved hjælp af accumulator
. Du kan angive en valgfri seed-parameter, seed
.
Examples
Example #1
Akkumulerer opsamlingsværdien fra elementerne på listen {1, 2, 3, 4, 5} ved hjælp af ((state, current) => state + current ).
List.Accumulate({1, 2, 3, 4, 5}, 0, (state, current) => state + current)
Result:
15
Category
List.Transformation functions