Challenge - 5 Problems
OR Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Output of OR with multiple conditions
What is the result of the formula
=OR(A1>10, B1<5, C1=7) if the cell values are A1=8, B1=3, and C1=9?Attempts:
2 left
💡 Hint
Remember OR returns TRUE if any condition is TRUE.
✗ Incorrect
A1>10 is FALSE, B1<5 is TRUE, C1=7 is FALSE. OR returns TRUE if any condition is TRUE.
❓ Function Choice
intermediate2:00remaining
Choosing the correct OR formula
Which formula correctly checks if either cell A2 is empty or cell B2 is greater than 100?
Attempts:
2 left
💡 Hint
ISBLANK checks if a cell is empty.
✗ Incorrect
Option C uses ISBLANK to check if A2 is empty and B2>100 correctly. Other options either check >=100 or use text comparison which may not be reliable.
📊 Formula Result
advanced2:00remaining
Result of OR with nested AND conditions
What is the result of
=OR(AND(A1>5, B1<10), AND(C1=3, D1>0)) if A1=6, B1=12, C1=3, and D1=1?Attempts:
2 left
💡 Hint
AND returns TRUE only if all conditions inside it are TRUE.
✗ Incorrect
AND(A1>5, B1<10) is FALSE because B1=12 is not less than 10. AND(C1=3, D1>0) is TRUE because both are true. OR returns TRUE if any argument is TRUE.
🎯 Scenario
advanced2:00remaining
Using OR to highlight overdue or high priority tasks
You want to highlight tasks in a spreadsheet if the due date is before today or the priority is 'High'. Which conditional formatting formula should you use?
Attempts:
2 left
💡 Hint
OR highlights if either condition is true.
✗ Incorrect
Option B correctly uses OR to check if due date is before today or priority is High. Other options use AND or wrong date comparisons.
❓ data_analysis
expert3:00remaining
Counting rows where OR condition is met
You have a table with columns Score1 and Score2. Which formula counts how many rows have Score1>80 or Score2>80?
Attempts:
2 left
💡 Hint
SUMPRODUCT can handle OR logic by adding boolean arrays.
✗ Incorrect
Option A correctly counts rows where either Score1 or Score2 is greater than 80 by adding boolean arrays and checking if sum is greater than zero. Options A and D double count rows where both conditions are true. Option A is invalid syntax.