logo
excelfunctions.org
bookmarks

AND

Returns TRUE if all of its arguments are TRUE.

LogicalBeginner EssentialsLogic & ConditionsMost Used

What it does

Returns TRUE only if all conditions are TRUE.

Syntax

AND(logical1, [logical2], ...)

Arguments

  • logical1(logical)First condition to test.

Examples

All conditions must pass

Check if Score≥80 AND Attendance≥90%.

FORMULA
=AND(A2>=80,B2>=0.9)
RESULT
true
SAMPLE DATA
AB
1ScoreAttendance
2850.95
3780.92
4900.88