Logical Modern

AND

Returns TRUE only if all conditions are TRUE.

Available in All versions

Syntax

AND(logical1, [logical2])

What it returns

TRUE if every argument is TRUE; otherwise FALSE.

Arguments

ArgumentRequiredDescription
logical1 Yes The first condition to test.
logical2 No Additional conditions to test (up to 255).

Example

AB
1AgeMember
220No
ResultFALSE

AND needs every condition TRUE. Age 20 ≥ 18 holds, but Member is not Yes, so the result is FALSE.

=AND(A2>=18, B2="Yes")

Important to know

Returns TRUE only when every condition is TRUE.

Commonly used inside IF as the logical_test.

Related functions

Related learning