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) * 3returns 6 days.[Price] * [Quantity]multiplies the "Price" column by the value in the "Quantity" column.3.20 * 5returns 16.-2 * 4returns -8.-5 * -3returns 15.