Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
_nav_BackToTop
Panel
bgColorwhite

AND

This function returns


Returns TRUE if all its arguments evaluate to TRUE; it returns FALSE if one or more arguments evaluate to FALSE.


Syntax

Code Block
argument1 AND argument2 [AND ...]



Inputs
  • argument1 - The first boolean condition that you want to evaluate.
  • argument2 - The first boolean condition that you want to evaluate.
  • [AND …] - Additional boolean conditions that you want to evaluate. (optional)


Return type

  • boolean


Examples

ExpressionResultType
TRUE AND TRUETRUEBooleanboolean
TRUE AND FALSE

FALSE

Booleanboolean
TRUE AND ? (= UNKNOWN)UNKNOWNBooleanboolean
FALSE AND ? FALSEBoolean
Include Page
_nav_BackToTop
boolean



Back to top