0
0
Google Sheetsspreadsheet~20 mins

Combining clauses in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Master of Combining Clauses
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2: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")
A"Yes"
BTRUE
C0
D"No"
Attempts:
2 left
💡 Hint
Remember AND needs all TRUE, OR needs at least one TRUE.
Function Choice
intermediate
2: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?
A=OR(AND(A1>10, B1=5), C1<3)
B=AND(A1>10, OR(B1=5, C1<3))
C=AND(OR(A1>10, B1=5), C1<3)
D=OR(A1>10, AND(B1=5, C1<3))
Attempts:
2 left
💡 Hint
AND means all conditions must be true; OR means one of the conditions must be true.
data_analysis
advanced
2: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?
A=FILTER(A2:B100, A2:A100>1000, OR(B2:B100="East", B2:B100="West"))
B=FILTER(A2:B100, A2:A100>1000, (B2:B100="East")+(B2:B100="West"))
C=FILTER(A2:B100, AND(A2:A100>1000, OR(B2:B100="East", B2:B100="West")))
D=FILTER(A2:B100, (A2:A100>1000)*( (B2:B100="East")+(B2:B100="West") ))
Attempts:
2 left
💡 Hint
In FILTER, use multiplication (*) for AND and addition (+) for OR with arrays.
🎯 Scenario
advanced
2: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(B2>=90, "A", IF(AND(B2>=80, B2<90), "B", IF(AND(B2>=70, B2<80), "C", "F")))
B=IF(B2>=90, "A", IF(B2>=80, "B", IF(B2>=70, "C", "F")))
C=IF(AND(B2>=90, B2<100), "A", IF(AND(B2>=80, B2<90), "B", IF(AND(B2>=70, B2<80), "C", "F")))
D=IF(B2>90, "A", IF(B2>80, "B", IF(B2>70, "C", "F")))
Attempts:
2 left
💡 Hint
Use nested IFs with AND to check ranges precisely.
📊 Formula Result
expert
3:00remaining
Evaluate complex combined logical formula output
Given the values:
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")
ATRUE
B"Fail"
C"Pass"
DFALSE
Attempts:
2 left
💡 Hint
Check each AND condition inside the OR separately.