Challenge - 5 Problems
Rule Priority Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What is the result of this conditional formatting formula?
You apply this formula in conditional formatting to cell A1:
If A1 contains 15, what will be the formatting result?
=AND(A1>10, A1<20)If A1 contains 15, what will be the formatting result?
Attempts:
2 left
💡 Hint
AND returns TRUE only if all conditions are TRUE.
✗ Incorrect
The formula checks if A1 is greater than 10 and less than 20. Since 15 meets both, the formatting applies.
❓ Function Choice
intermediate2:00remaining
Which function correctly prioritizes rules to highlight the highest value?
You want to highlight the cell with the highest value in range B1:B10 using conditional formatting. Which formula should you use?
Attempts:
2 left
💡 Hint
MAX finds the largest number in a range.
✗ Incorrect
The formula checks if the cell equals the maximum value in the range, so only the highest value is highlighted.
🎯 Scenario
advanced2:30remaining
How does rule priority affect overlapping conditional formatting?
You have two conditional formatting rules on the same cells:
1) Cells greater than 50 are colored green.
2) Cells greater than 70 are colored red.
If a cell contains 75, what color will it be and why?
1) Cells greater than 50 are colored green.
2) Cells greater than 70 are colored red.
If a cell contains 75, what color will it be and why?
Attempts:
2 left
💡 Hint
Higher priority rules override lower ones when conditions overlap.
✗ Incorrect
Since 75 is greater than both 50 and 70, the rule with higher priority (usually the one listed first or moved up) applies, coloring the cell red.
📊 Formula Result
advanced2:00remaining
What is the output of this formula in conditional formatting?
Given the formula:
What is the result if A1 contains 75?
=OR(A1>100, AND(A1>50, A1<80))What is the result if A1 contains 75?
Attempts:
2 left
💡 Hint
OR returns TRUE if any condition is TRUE.
✗ Incorrect
75 is not greater than 100, but it is greater than 50 and less than 80, so AND returns TRUE, making OR TRUE.
❓ data_analysis
expert3:00remaining
How many cells will be formatted with these overlapping rules?
You apply two conditional formatting rules to range C1:C5:
Rule 1 (higher priority): Format cells if value > 30
Rule 2 (lower priority): Format cells if value > 50
Values in C1:C5 are: 25, 35, 45, 55, 65
How many cells will be formatted and which rule applies to each?
Rule 1 (higher priority): Format cells if value > 30
Rule 2 (lower priority): Format cells if value > 50
Values in C1:C5 are: 25, 35, 45, 55, 65
How many cells will be formatted and which rule applies to each?
Attempts:
2 left
💡 Hint
Higher priority rules override lower ones when conditions overlap.
✗ Incorrect
Values 35 and 45 meet only Rule 1. Values 55 and 65 meet both rules, but Rule 1 has higher priority so it applies to all cells that meet its condition.