[This is preliminary documentation and subject to change.]
Used to multiply two numbers.
Syntax
result = number1*number2
The * operator syntax has these parts:
Part | Description |
result | Required; any numeric variable. |
number1 | Required; any numeric expression. |
number2 | Required; any numeric expression. |
Example
MyValue = 2 * 2 ' Returns 4.
MyValue = 459.35 * 334.90 ' Returns 153836.315.