^ - Operator (Exponentiation)

Concerns

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

Example

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

V1 := 10

V2 := 20

V3 := V1 ^ V2

Result:

V3 contains the value 1*10^20 (1E20)