Challenge - 5 Problems
AND Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Output of AND with multiple conditions
What is the result of the formula
=AND(A1>5, B1<10, C1=20) if A1=6, B1=9, and C1=20?Attempts:
2 left
💡 Hint
AND returns TRUE only if all conditions are TRUE.
✗ Incorrect
Since A1>5 (6>5), B1<10 (9<10), and C1=20 (20=20) are all TRUE, AND returns TRUE.
❓ Function Choice
intermediate2:00remaining
Choosing the correct AND formula for a condition
You want to check if the value in cell A2 is between 10 and 20 inclusive. Which formula correctly uses the AND function?
Attempts:
2 left
💡 Hint
Inclusive means the value can be equal to the limits.
✗ Incorrect
To include 10 and 20, use >= and <= operators in AND.
📊 Formula Result
advanced2:00remaining
Result of AND with mixed TRUE and FALSE
What is the output of
=AND(TRUE, FALSE, TRUE)?Attempts:
2 left
💡 Hint
AND returns TRUE only if all arguments are TRUE.
✗ Incorrect
Since one argument is FALSE, AND returns FALSE.
🎯 Scenario
advanced2:00remaining
Using AND to validate data entry
You want to allow data entry in cell B2 only if cell A2 contains a number greater than 0 and less than 100. Which formula would you use in data validation's custom formula box?
Attempts:
2 left
💡 Hint
Check the cell you want to validate and ensure it is a number within range.
✗ Incorrect
The formula checks if A2 is a number and between 0 and 100, which is the condition for allowing entry.
❓ data_analysis
expert3:00remaining
Counting rows meeting multiple conditions with AND
You have a table with columns: Age (A), Score (B), and Status (C). You want to count how many rows have Age >= 18, Score > 70, and Status equal to "Pass". Which formula correctly counts these rows?
Attempts:
2 left
💡 Hint
COUNTIFS counts rows matching all criteria together.
✗ Incorrect
COUNTIFS applies all conditions row-wise and counts rows meeting all criteria.