Name |
IfThenElse | |
Purpose |
Returns a value conditionally. | |
Description |
The IfThen Function evaluates the Condition argument and returns the value of the Then argument if the Condition is true. It returns the value of the Else argument if the Condition is false. You may use the Compare, And, Or, or Not functions to specify the value of the Condition argument. | |
Return Type |
Simple | |
Argument | Condition (Boolean) | The Expression to evaluate. |
Argument | Then (Simple) | The value to return if the Condition is true. |
Argument | ElseThen (Simple) | The value to return if the Condition is false. |