Multiplication operator *
The multiplication operator *
computes the product of its operands.
Expression | Result |
---|---|
Numeric * Duration | Duration |
Duration * Numeric | Duration |
Numeric * Numeric | Numeric |
Examples
3 * Days(2)
returns 6 days.Days(2) * 3
returns 6 days.[Price] * [Quantity]
multiplies the "Price" column by the value in the "Quantity" column.3.20 * 5
returns 16.-2 * 4
returns -8.-5 * -3
returns 15.