Challenge - 5 Problems
Advanced Pattern Highlighter
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What is the output of this conditional formatting formula?
You apply this custom formula in conditional formatting to cells A1:A5:
Which cells will be highlighted if the values are:
A1=3, A2=4, A3=7, A4=8, A5="text"?
=AND(ISNUMBER(A1), MOD(A1, 2) = 0)Which cells will be highlighted if the values are:
A1=3, A2=4, A3=7, A4=8, A5="text"?
Attempts:
2 left
💡 Hint
Think about which numbers are even and which cells contain numbers.
✗ Incorrect
The formula checks if the cell contains a number and if that number is even (divisible by 2). Only A2=4 and A4=8 meet both conditions.
❓ Function Choice
intermediate2:00remaining
Which function helps highlight duplicate values?
You want to create a conditional formatting rule that highlights cells with duplicate values in the range B1:B10. Which formula should you use?
Attempts:
2 left
💡 Hint
Think about counting how many times a value appears in the range.
✗ Incorrect
COUNTIF counts how many times the value in B1 appears in the range. If more than once, it is a duplicate.
❓ data_analysis
advanced2:00remaining
Analyzing pattern highlights with multiple conditions
You apply this conditional formatting formula to range C1:C6:
Given values:
C1=11, C2=12, C3=15, C4=8, C5=21, C6=10
Which cells will be highlighted?
=AND(C1>10, ISODD(C1))Given values:
C1=11, C2=12, C3=15, C4=8, C5=21, C6=10
Which cells will be highlighted?
Attempts:
2 left
💡 Hint
Check which numbers are greater than 10 and odd.
✗ Incorrect
C1=11 (>10 and odd), C3=15 (>10 and odd), C5=21 (>10 and odd) meet both conditions.
🎯 Scenario
advanced2:00remaining
Highlighting cells based on text patterns
You want to highlight cells in column D that start with the letters "ex" (case insensitive). Which custom formula should you use in conditional formatting?
Attempts:
2 left
💡 Hint
Consider case insensitivity and matching start of text.
✗ Incorrect
REGEXMATCH with LOWER converts text to lowercase and checks if it starts with 'ex'. LEFT is case sensitive unless combined with LOWER.
🧠 Conceptual
expert2:00remaining
Why do advanced conditional formatting rules highlight unexpected cells?
You created a complex conditional formatting rule using this formula:
But some blank-looking cells are highlighted. What is the most likely reason?
=AND(ISNUMBER(A1), A1>5, NOT(ISBLANK(A1)))But some blank-looking cells are highlighted. What is the most likely reason?
Attempts:
2 left
💡 Hint
Think about what makes a cell appear blank but still contain data.
✗ Incorrect
Cells with spaces or invisible characters are not blank, so ISBLANK returns FALSE and the formula highlights them if other conditions match.