And | AND
Syntax
AND( [input], [other] )
Parameters
input
Any data may be used as the input.
other
Any data may be used as the other.
Return Value
TRUE or FALSEDescription
Determine if two values are both truthy. Determination of truthiness is determined by the BOOLEAN operation.Examples
AND(false, false) # returns FALSE
AND(false, true) # returns FALSE
AND(true, false) # returns FALSE
AND(true, true) # returns TRUE
AND(0, 1) # returns FALSE
AND(1, 1) # returns TRUE