>= - Operator (Logical Comparison Greater or Equal)

Concerns

This operator performs a logical comparison to Greater or Equal 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 GE V2)