True/False expression

True/False expressions are any combination of values, strings, and/or operators that evaluate to a true or false value; their return type is either true or false.

  True/False expressions can include numeric and relational operators as well as true/false functions. When using relational operators to compare strings, the ASCII values of the first two characters are evaluated. If they are not equal, the strings are not equal.

Examples

8 + 4 > 4 + 10

Value1 = Value2

Close + 3 < Open

Value1 <> 3

"MSFT" = "GE"