0
0
Excelspreadsheet~20 mins

Conditional formatting basics in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Conditional Formatting Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What color will cell A1 be if its value is 75?

Given the conditional formatting rules below applied to cell A1, what color will A1 display if its value is 75?

  • Rule 1: Format cells with value >= 90 as green
  • Rule 2: Format cells with value >= 70 as yellow
  • Rule 3: Format cells with value < 70 as red

Assume rules are applied in order and stop at the first true condition.

AGreen
BRed
CNo color
DYellow
Attempts:
2 left
💡 Hint

Check which condition matches first when reading rules top to bottom.

Function Choice
intermediate
2:00remaining
Which formula correctly highlights cells in column B if their value is less than the value in column A of the same row?

You want to apply conditional formatting to cells in column B. The formatting should highlight a cell if its value is less than the value in column A on the same row.

Which formula should you use in the conditional formatting rule?

A=B$1 < $A1
B=$B1 < $A1
C=B1 < A1
D=$B$1 < $A$1
Attempts:
2 left
💡 Hint

Remember the formula is evaluated for each cell in column B, so relative references matter.

data_analysis
advanced
2:00remaining
How many cells will be highlighted with this conditional formatting?

In the range C1:C5, the values are: 10, 20, 30, 40, 50.

A conditional formatting rule uses the formula =C1>25 applied to the range C1:C5.

How many cells will be highlighted?

A3
B2
C4
D5
Attempts:
2 left
💡 Hint

Check which values in the range are greater than 25.

🎯 Scenario
advanced
2:00remaining
You want to highlight duplicate values in column D. Which conditional formatting formula should you use?

To highlight duplicate values in column D (D1:D100), you create a new conditional formatting rule with a formula.

Which formula will correctly highlight duplicates?

A=COUNTIF($D$1:$D$100, D1) &gt; 1
B=COUNTIF(D1:D100, D1) &gt; 1
C=COUNTIF($D$1:D$100, $D1) &gt; 1
D=COUNTIF($D1:$D100, D1) &gt; 1
Attempts:
2 left
💡 Hint

Think about fixing the range and using relative reference for the cell being checked.

🧠 Conceptual
expert
2:00remaining
What happens if you apply two conflicting conditional formatting rules to the same cell?

You apply two conditional formatting rules to cell E1:

  • Rule 1: If E1 > 50, fill color red
  • Rule 2: If E1 > 30, fill color green

The rules are applied in the order listed, and both conditions are true for E1 = 60.

What will be the fill color of E1?

AGreen, because the last rule overrides previous ones
BRed, because the first rule that matches applies and stops further rules
CNo fill color, because conflicting rules cancel each other
DBoth red and green fill colors combined
Attempts:
2 left
💡 Hint

Think about rule order and stopping behavior in conditional formatting.