Committed Function
Relevance:
Variable occurrences within this function do not contribute towards the overall relevance of those variables.
Consequently, such variables must occur in at least one other context for them to be considered relevant.
Description:
Test if the variable is committed.
Returns true if the variable has a value and that value is committed, and returns false otherwise.
note
This function is non-evaluable if the variable does not exist in the dictionary.
Returns:
Boolean
Parameter:
Parameter | Data Type | Description |
|---|---|---|
1 | Any | The name of the variable. |
Examples:
When using functions inside a field, remember the field brackets:
{Committed(VariableName)}
Expression | Result |
|---|---|
Committed( Var ) where Var has a value which is committed | true |
Committed( Var ) where Var has a value which is not committed | false |
Committed( Var ) where Var does not have a value | false |