Excel Practice - XOR
Instruction
Return TRUE only when exactly one of these is TRUE: A2>=85 or B2>=90.
Formula Syntax
=XOR(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 an odd number of 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 XOR 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.