Returns |
Since the function returns a Boolean value, it can be used as a function or a conditional.
NOTE: Within an expression, you might choose to use the corresponding operator, instead of this function. For more information, see Comparison Operators. |
keep row: LESSTHANEQUAL(myValue, maxLimit) |
Output: Keeps all rows in which the value in the myValue
column is less than or equal to the value in maxLimit
.
derive type:single value:LESSTHANEQUAL(value1, value2) |
Argument | Required? | Data Type | Description |
---|---|---|---|
value1 | Y | string | The first value. This can be a number, a function returning a number, or a column containing numbers. |
value2 | Y | string | The second value. This can be a number, a function returning a number, or a column containing numbers. |
Names of the column, expressions, or literals to compare.
Required? | Data Type | Example Value |
---|---|---|
Yes | Column reference, function, or numeric or String value | myColumn |