Converts a value into a boolean expression. Changes from text values using US English spelling (Decimal numbers must use . as the decimal separator).
Boolean( [Value] )
Where:
Value is the value to convert.
Any number other than 0 will return True. 0 will return FALSE
Rule | Meaning |
---|---|
Boolean(2.6) | Returns TRUE as the number is not 0 |
Boolean(DWVariableNumberToConvert) | Will return TRUE when DWVariableNumberToConvert is not 0, and will return FALSE when DWVariableNumberToConvert is 0. |