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 FALSEAND(false, true) # returns FALSEAND(true, false) # returns FALSEAND(true, true) # returns TRUEAND(0, 1) # returns FALSEAND(1, 1) # returns TRUE