Challenge - 5 Problems
Master of Combining Clauses
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Combine AND and OR clauses in a formula
What is the result of this formula if A1=5, B1=10, and C1=3?
=IF(AND(A1>3, OR(B1=10, C1=5)), "Yes", "No")Attempts:
2 left
💡 Hint
Remember AND needs all TRUE, OR needs at least one TRUE.
✗ Incorrect
A1 is greater than 3 (TRUE), and OR(B1=10, C1=5) is TRUE because B1=10. So AND(TRUE, TRUE) is TRUE, so IF returns "Yes".
❓ Function Choice
intermediate2:00remaining
Choose the correct formula combining clauses
Which formula returns TRUE only if A1 is greater than 10 and either B1 equals 5 or C1 is less than 3?
Attempts:
2 left
💡 Hint
AND means all conditions must be true; OR means one of the conditions must be true.
✗ Incorrect
The condition requires A1>10 AND (B1=5 OR C1<3). Option B matches this exactly.
❓ data_analysis
advanced2:30remaining
Filter data with combined conditions
You have a list of sales in column A and regions in column B. You want to filter rows where sales are greater than 1000 and region is either "East" or "West". Which FILTER formula gives the correct filtered list?
Attempts:
2 left
💡 Hint
In FILTER, use multiplication (*) for AND and addition (+) for OR with arrays.
✗ Incorrect
Option D correctly uses multiplication for AND and addition for OR in array context. Option D and C use OR and AND functions which do not work with arrays in FILTER. Option D uses addition but misses the AND multiplication.
🎯 Scenario
advanced2:30remaining
Create a formula to assign grades based on multiple conditions
You want to assign grades in column C based on scores in column B:
- "A" if score >= 90
- "B" if score >= 80 and < 90
- "C" if score >= 70 and < 80
- "F" otherwise
Which formula in C2 correctly uses combined clauses to assign grades?
- "A" if score >= 90
- "B" if score >= 80 and < 90
- "C" if score >= 70 and < 80
- "F" otherwise
Which formula in C2 correctly uses combined clauses to assign grades?
Attempts:
2 left
💡 Hint
Use nested IFs with AND to check ranges precisely.
✗ Incorrect
Option A correctly checks ranges with AND for B and C grades. Option A misses upper bounds, so 90 would get B incorrectly. Option A unnecessarily checks upper bound for A and excludes 90. Option A uses > instead of >= and misses exact boundaries.
📊 Formula Result
expert3:00remaining
Evaluate complex combined logical formula output
Given the values:
A1=4, B1=7, C1=10
What is the output of this formula?
A1=4, B1=7, C1=10
What is the output of this formula?
=IF(OR(AND(A1>3, B1<5), AND(B1>5, C1<15)), "Pass", "Fail")Attempts:
2 left
💡 Hint
Check each AND condition inside the OR separately.
✗ Incorrect
AND(A1>3, B1<5) is FALSE because B1=7 is not less than 5. AND(B1>5, C1<15) is TRUE because 7>5 and 10<15. OR(FALSE, TRUE) is TRUE, so IF returns "Pass".