Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Note
Community interest groups have now moved from Yammer to Microsoft Viva Engage. To join a Viva Engage community and take part in the latest discussions, fill out the Request access to Finance and Operations Viva Engage Community form and choose the community you want to join.
The AND function returns a Boolean value of TRUE if all the specified conditions are true. Otherwise, it returns a Boolean value of FALSE.
Syntax
AND (condition 1[, condition 2, …, condition N])
Arguments
condition 1: Boolean
A valid conditional expression that must be tested. This argument is required.
condition N: Boolean
A valid conditional expression that must be tested. These additional arguments are optional.
Return values
Boolean
The resulting Boolean value.
Usage notes
In the arguments of logical functions, you can use data source references, numeric and text values, Boolean values, comparison operators, and other Electronic reporting (ER) functions. However, all the arguments must be evaluated to a Boolean value of TRUE or FALSE.
Example
AND (1=1, "a"="a") returns TRUE.
AND (1=2, "a"="a") returns FALSE.