This operator performs a logical comparison on Lower between two expressions to the left and right of the operator.
Example
Dim V1 As Long, V2 As Long, V3 As Boolean
V1 := 4
V2 := 8
V3 := (V1 < V2)
Result:
V3 contains the value True (-1)
Other spellings that produce the same result are:
V3 := (V1 LT V2)