AND
From LongJump Support Wiki
Revision as of 22:37, 25 August 2009 by imported>Evelyn
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