Nota
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tidħol jew tibdel id-direttorji.
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tibdel id-direttorji.
Syntax
List.Product(numbersList as list, optional precision as nullable number) as nullable number
About
Returns the product of the non-null numbers in the list, numbersList. Returns null if there are no non-null values in the list.
Example
Find the product of the numbers in the list {1, 2, 3, 3, 4, 5, 5}.
Usage
List.Product({1, 2, 3, 3, 4, 5, 5})
Output
1800