* - Operator (Multiplication)

Concerns

This operator converts the expressions to the right of the operator into numeric types and multiplies them.

Example

Dim V1 As Long, V2 As Long, V3 As Long

V1 := 10

V2 := 20

V3 := V1 * V2

Result:

V3 contains the value 200