Excel Practice - OR
Instruction
Check whether A3 is at least 85 or B3 is at least 90; return TRUE if either condition is met.
Formula Syntax
=OR(logical1, [logical2], ...)
- logical1: Logical condition that evaluates to TRUE or FALSE.
- [logical2]: Logical condition that evaluates to TRUE or FALSE.
- ...: Additional optional arguments.
What it does
Return TRUE when any logical test is 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 OR 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.