List.Accumulate

Syntax

List.Accumulate(list as list, seed as any, accumulator as function) as any

About

Accumulates a summary value from the items in the list list, using accumulator. An optional seed parameter, seed, may be set.

Example 1

Accumulates the summary value from the items in the list {1, 2, 3, 4, 5} using ((state, current) => state + current ).

Usage

List.Accumulate({1, 2, 3, 4, 5}, 0, (state, current) => state + current)

Output

15