Ana içeriğe geç

List.Product

Listedeki sayıların çarpımını döndürür.

Syntax

List.Product(
numbersList as list,
optional precision as Precision.Type
) as number

Remarks

numbersList listesindeki null olmayan sayıların çarpımını döndürür. Listede null olmayan değer yoksa null döndürülür.

Examples

Example #1

<code>{1, 2, 3, 3, 4, 5, 5}</code> listesindeki sayıların çarpımını bulur.

List.Product({1, 2, 3, 3, 4, 5, 5})

Result:

1800

Category

List.Numerics