Conditional functions
This page goes over the conditional functions in Upsolver.
COALESCE
COALESCE
Returns the first value that is not null or missing.
inputs | result |
|
|
|
|
|
|
|
|
IF_ELSE
IF_ELSE
If there is a true
boolean value in the condition
parameter then return the first value. Otherwise, return the second.
Inputs
condition
true_value
false_value
condition |
|
| result |
|
|
|
|
|
|
|
|
|
|
|
NULL_IF
NULL_IF
If there is a true
boolean value in the condition
parameter, then return null. Otherwise, return the value.
Inputs
condition
value
condition | value | result |
|
|
|
|
|
|
|
|
Last updated