- - Operator (Minus, Subtraction)

Concerns

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

Example

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

V1 := 10

V2 := 20

V3 := V1 - V2

Result:

V3 contains the value -10