0
0
Excelspreadsheet~20 mins

OR function in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
OR Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2: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?
ATRUE
BFALSE
C8
D3
Attempts:
2 left
💡 Hint
Remember OR returns TRUE if any condition is TRUE.
Function Choice
intermediate
2:00remaining
Choosing the correct OR formula
Which formula correctly checks if either cell A2 is empty or cell B2 is greater than 100?
A=OR(ISBLANK(A2), B2&gt;=100)
B=OR(A2="", B2&gt;100)
C=OR(ISBLANK(A2), B2&gt;100)
D=OR(A2="", B2&gt;=100)
Attempts:
2 left
💡 Hint
ISBLANK checks if a cell is empty.
📊 Formula Result
advanced
2: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?
A6
BFALSE
C12
DTRUE
Attempts:
2 left
💡 Hint
AND returns TRUE only if all conditions inside it are TRUE.
🎯 Scenario
advanced
2: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?
A=OR(A2&gt;TODAY(), B2="High")
B=OR(A2&lt;TODAY(), B2="High")
C=AND(A2&lt;TODAY(), B2="High")
D=AND(A2&gt;TODAY(), B2="High")
Attempts:
2 left
💡 Hint
OR highlights if either condition is true.
data_analysis
expert
3: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?
A=SUMPRODUCT(--( (Score1&gt;80) + (Score2&gt;80) &gt; 0 ))
B=COUNTIFS(Score1, ">80") + COUNTIFS(Score2, ">80")
C=SUM(IF(OR(Score1&gt;80, Score2&gt;80),1,0))
D=COUNTIF(Score1&gt;80, TRUE) + COUNTIF(Score2&gt;80, TRUE)
Attempts:
2 left
💡 Hint
SUMPRODUCT can handle OR logic by adding boolean arrays.