Compares two values and returns True if the first value is less than or equal to the second value.
LessThanOrEqual(Value1:Integer,Value2:Integer,ParamType:String):Boolean
Value1 is the first value to compare.
Value2 is the second value to commpare.
ParamType is the data type to use for comparing values. Valid values: string, integer, float, date. The default value is integer.
LessThanOrEqual(3,3)
The return value is True.