GE or >= operator

Returns a TRUE value if the first of two expressions is greater than or equal to the second expression.

Syntax

expression { GE | >= } expression
expression
A constant, field name, variable name, or any combination of these. The expressions on either side of the GE or >= must be of the same data type, although one might be integer and the other decimal.

Example

This procedure displays item information for those items whose OnHand value is greater than or equal to 120:

r-ge.p

FOR EACH Item NO-LOCK WHERE Item.OnHand >= 120:
  DISPLAY Item.ItemNum Item.ItemName Item.OnHand.
END.

Notes