Product

Product is a mathematical function that multiplies all numbers or references and returns the product. The function syntax:

Product(arguments)

where arguments is one or more of these arguments:

Table B-19 Arguments for the Product Function

Argument Description

numeric

A numeric value. For example, Product(2, 20) returns the value 40. Numeric values can include decimals and negative values.

row, column, or cell reference

A pointer to a row, column, or cell within a grid. References can be specified in several ways. The reference syntax: GridName.GridElement[segment(range)].property

function

An embedded function

Example:

The following example returns 40:

Product(2,20)