This function, when calculated, multiplies all of the specified numbers together and returns the result.
Product([Number1], [Number2], [Number n])
Where:
Number1, Number2, Number n, are the numbers or references to numbers, that you want to find the product of.
There can be 1 to 255 Numbers in any one Product Function.
Rule | Meaning |
---|---|
Product(PartPriceTextBoxReturn, QuantityTextBoxReturn) | The Product function multiplies the return value of the PartPriceTextBox by the return value of the QuantityTextBox. |
PartPriceTextBoxReturn Value | QuantityTextBoxReturn Value | Result of the Product function |
---|---|---|
112.15 | 3 | 336.45 |
505.20 | 20 | 10104 |