> - Operator (Logical Comparison Greater)

Concerns

This operator performs a logical comparison on Greater between two expressions to the left and right of the operator.

Example

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

V1 := 8

V2 := 4

V3 := (V1 > V2)

Result:

V3 contains the value True (-1)

Other spellings that produce the same result are:

V3 := (V1 GT V2)