Function | Description |
boolean1 OR boolean2 | Returns TRUE if boolean1 or boolean2 is TRUE. |
boolean1 AND boolean2 | Returns TRUE if boolean1 and boolean2 are both TRUE. |
NOT boolean | Returns TRUE if boolean is FALSE; returns FALSE if boolean is TRUE; returns UNKNOWN if boolean is UNKNOWN. |
boolean IS FALSE | Returns TRUE if boolean is FALSE; returns FALSE if boolean is UNKNOWN. |
boolean IS NOT FALSE | Returns TRUE if boolean is not FALSE; returns TRUE if boolean is UNKNOWN. |
boolean IS UNKNOWN | Returns TRUE if boolean is UNKNOWN; otherwise FALSE. |
boolean IS NOT UNKNOWN | Returns TRUE if boolean is not UNKNOWN; otherwise FALSE. |
Was this page helpful?