The AND function returns the logical AND of its arguments. The arguments must be logical conditions that can take the value TRUE or FALSE.
Examples
AND(TRUE, TRUE) |
returns TRUE |
AND(TRUE, FALSE) |
returns FALSE |
AND(6 < 10, 40 > 20) |
returns TRUE |
See also: