Concerns
This operator converts the expressions to the right of the operator into numeric types and divides them.
Example
Dim V1 As Long, V2 As Long, V3 As Double
V1 := 10
V2 := 20
V3 := V1 / V2
Result:
V3 contains a value of 0.5