0
0
Google Sheetsspreadsheet~20 mins

Why advanced rules highlight patterns in Google Sheets - Challenge Your Understanding

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Advanced Pattern Highlighter
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What is the output of this conditional formatting formula?
You apply this custom formula in conditional formatting to cells A1:A5:

=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"?
AAll cells will be highlighted
BOnly A2 and A4 will be highlighted
COnly A1, A3, and A5 will be highlighted
DNo cells will be highlighted
Attempts:
2 left
💡 Hint
Think about which numbers are even and which cells contain numbers.
Function Choice
intermediate
2: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?
A=B1 > 5
B=ISNUMBER(B1)
C=COUNTIF(B$1:B$10, B1) > 1
D=LEN(B1) = 0
Attempts:
2 left
💡 Hint
Think about counting how many times a value appears in the range.
data_analysis
advanced
2:00remaining
Analyzing pattern highlights with multiple conditions
You apply this conditional formatting formula to range C1:C6:

=AND(C1>10, ISODD(C1))

Given values:
C1=11, C2=12, C3=15, C4=8, C5=21, C6=10

Which cells will be highlighted?
AOnly C1 and C5
BC2, C4, and C6
COnly C3 and C5
DC1, C3, and C5
Attempts:
2 left
💡 Hint
Check which numbers are greater than 10 and odd.
🎯 Scenario
advanced
2: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?
A=REGEXMATCH(LOWER(D1), "^ex")
B=LEFT(D1, 2) = "ex"
C=SEARCH("ex", D1) = 1
D=EXACT(LEFT(D1, 2), "ex")
Attempts:
2 left
💡 Hint
Consider case insensitivity and matching start of text.
🧠 Conceptual
expert
2:00remaining
Why do advanced conditional formatting rules highlight unexpected cells?
You created a complex conditional formatting rule using this formula:

=AND(ISNUMBER(A1), A1>5, NOT(ISBLANK(A1)))

But some blank-looking cells are highlighted. What is the most likely reason?
AThe cells contain invisible characters or spaces, so they are not truly blank
BThe formula syntax is incorrect and highlights all cells
CConditional formatting cannot detect blank cells
DThe cells contain formulas returning empty strings, which count as blank
Attempts:
2 left
💡 Hint
Think about what makes a cell appear blank but still contain data.