List.Product
This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.
Returns the product from a list of numbers.
List.Product(list as list) as number
| Argument | Description |
|---|---|
| list | The List to check. |
- If the list is empty, an Expression.Error is thrown.
List.Product({2, 3, 4}) equals 24
List.Product({}) equals error
Show: