+= - Operator (Addition and assignment)

Concerns

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

Example

Dim V1 As Long

V1 := 10

V1 += 20

Result:

V1 contains the value 30