AND

From AgileApps Support Wiki

The AND function evaluates two logical arguments. If both arguments are true, this function returns TRUE. If one or both of the arguments are false, then this function returns FALSE.

Syntax
AND(logical1, logical2)
Element Description
logical1 Any argument that returns a Boolean value of TRUE or FALSE.
logical2 Any argument that returns a Boolean value of TRUE or FALSE.
Return
TRUE or FALSE
Example
AND(true, true) = TRUE
AND(true, false) = FALSE
AND(false, true) = FALSE
AND(false, false) = FALSE