Progress
Language Reference


LT or < Operator

Interfaces
OS
SpeedScript
All
All
Yes

Returns a TRUE value if the first of two expressions is less than the second.

SYNTAX

expression { LT | < } expression 

expression

A constant, field name, variable name, or expression. The expressions on either side of the LT or < = must be of the same data type, although one can be an integer and the other can be a decimal.

EXAMPLE

This procedure displays information for those item records whose on-hand value is less than the allocated value.

r-lt.p
FOR EACH item WHERE on-hand < allocated:
  DISPLAY item.item-num item-name on-hand allocated.
END. 

NOTES


Copyright © 2004 Progress Software Corporation
www.progress.com
Voice: (781) 280-4000
Fax: (781) 280-4095