List.ProductList.Product
構文Syntax
List.Product(numbersList as list, optional precision as nullable number) as nullable number
バージョン情報About
リスト numbersList
内の null 値以外の数の積を返します。Returns the product of the non-null numbers in the list, numbersList
. リスト内に null 以外の値がない場合は、null を返します。Returns null if there are no non-null values in the list.
例 1Example 1
リスト {1, 2, 3, 3, 4, 5, 5}
内の数の積を求めます。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