Power Query
published
Search
⌃K

List.Product

List.Product

Returns the product of the numbers in the list.
function (numbersList as list, optional precision as nullable any) as nullable any

Description

Returns the product of the non-null numbers in the list, numbersList. Returns null if there are no non-null values in the list.

Category

List.Numerics

Examples

Find the product of the numbers in the list {1, 2, 3, 3, 4, 5, 5}.
List.Product({1, 2, 3, 3, 4, 5, 5})
1800