Challenge - 5 Problems
Conditional Formatting Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Identify the highlighted cells with this rule
You apply this conditional formatting rule to cells A1:A5:
Which cells will be highlighted if A1=3, A2=4, A3=7, A4=8, A5=10?
=MOD(A1,2)=0Which cells will be highlighted if A1=3, A2=4, A3=7, A4=8, A5=10?
Attempts:
2 left
💡 Hint
Think about which numbers are even.
✗ Incorrect
The formula checks if the number is even by using MOD with 2. Even numbers return 0 remainder, so cells with even numbers get highlighted.
❓ Function Choice
intermediate2:00remaining
Choose the correct formula for highlighting duplicates
You want to highlight duplicate values in the range B1:B10 using conditional formatting. Which formula should you use?
Attempts:
2 left
💡 Hint
Count how many times the current cell value appears in the range.
✗ Incorrect
COUNTIF counts how many times the value in B1 appears in the range B1:B10. If more than once, it is a duplicate and gets highlighted.
🎯 Scenario
advanced2:00remaining
Highlight cells with values above average
You want to highlight cells in C1:C20 that have values greater than the average of the range. Which conditional formatting formula will do this correctly?
Attempts:
2 left
💡 Hint
Use absolute references for the range in AVERAGE to keep it fixed.
✗ Incorrect
Using C$1:C$20 fixes the range for all cells, so each cell compares its value to the average of the entire range.
❓ data_analysis
advanced2:00remaining
Find the pattern highlighted by this rule
You apply this conditional formatting rule to D1:D10:
Which cells will be highlighted if the values are: 45, 55, 75, 100, 49, 51, 99, 101, 50, 80?
=AND(D1>50, D1<100)Which cells will be highlighted if the values are: 45, 55, 75, 100, 49, 51, 99, 101, 50, 80?
Attempts:
2 left
💡 Hint
Look for values greater than 50 and less than 100.
✗ Incorrect
The rule highlights cells where the value is more than 50 and less than 100, so only those values in that range get highlighted.
🧠 Conceptual
expert2:00remaining
Why does conditional formatting highlight patterns?
Which statement best explains why rules-based conditional formatting highlights patterns in data?
Attempts:
2 left
💡 Hint
Think about how conditional formatting works with rules and visual changes.
✗ Incorrect
Conditional formatting uses rules to check each cell's value and changes the cell's look if the rule is true, helping users see patterns easily.