Excel Practice - AND
Instruction
Check whether both A2 is at least 85 and B2 is at least 90; return TRUE only if both tests pass.
Formula Syntax
=FUNCTION(arguments)
- arguments: Function input parameter.
What it does
Return TRUE only when all logical tests are TRUE.
logical-checks.xlsx
| A | B | C | |
|---|---|---|---|
| 1 | Score | Attendance % | Approved |
| 2 | 92 | 96 | Yes |
| 3 | 78 | 88 | No |
| 4 | 85 | 91 | Yes |
| 5 | 66 | 84 | No |
| 6 | 90 | 93 | Yes |
| 7 | Output |
Input Formula
Need Help?
Tips
- Use AND with clean and consistent ranges for predictable results.
- Validate data types (number, text, date) before applying the formula.
- Test the formula with a small sample first, then scale it to larger ranges.