Boolean Format
In the field:
{ expression
Format
format
} where
expression
is a boolean, the format
represents the individual texts, separated by a vertical bar | character, to use for true/false values. Example 1
The expression:
Text( true, "Oui|Non" )
evaluates to:
"Oui"
and the expression:
Text( false, "Oui|Non" )
evaluates to:
"Non"
Example 2
In the
english_uk
locale, the expression: Text( true, "" )
evaluates to:
"Yes"
and the expression:
Text( false, "" )
evaluates to:
"No"