0
0
Excelspreadsheet~20 mins

Managing multiple rules in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Master of Managing Multiple Rules
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What is the result of applying these two conditional formatting rules?

You have two conditional formatting rules applied to cells A1:A3:

  1. Rule 1: Format cells with value > 10 as red fill.
  2. Rule 2: Format cells with value <= 10 as green fill.

Given the values in A1=8, A2=10, A3=12, what will be the fill color of cell A2?

ARed fill
BBoth red and green fill applied
CNo fill
DGreen fill
Attempts:
2 left
💡 Hint

Think about which rule applies when the value is exactly 10.

Function Choice
intermediate
2:00remaining
Which formula correctly applies multiple conditions in a single conditional formatting rule?

You want to highlight cells in B1:B5 that are greater than 5 and less than 15 using one conditional formatting rule. Which formula should you use?

A=AND(B1>5, B1<15)
B=OR(B1>5, B1<15)
C=B1>5<B15
D=IF(B1>5, B1<15)
Attempts:
2 left
💡 Hint

Use a function that checks if all conditions are true.

data_analysis
advanced
3:00remaining
Analyzing rule precedence in multiple conditional formatting rules

You have three conditional formatting rules applied to range C1:C4 with these formulas and order:

  1. =C1>100 (red fill)
  2. =C1>50 (yellow fill)
  3. =C1>0 (green fill)

If the values are C1=120, C2=75, C3=30, C4=0, what fill colors will each cell have assuming 'Stop If True' is enabled on all rules?

AC1: Red, C2: Yellow, C3: Green, C4: Green
BC1: Red, C2: Yellow, C3: Yellow, C4: Green
CC1: Red, C2: Yellow, C3: Green, C4: No fill
DC1: Red, C2: Red, C3: Green, C4: No fill
Attempts:
2 left
💡 Hint

Remember that 'Stop If True' stops checking further rules once a rule applies.

🎯 Scenario
advanced
3:00remaining
Scenario: Combining multiple conditional formatting rules with overlapping conditions

You want to highlight sales figures in D1:D5 with these rules:

  • Highlight values >= 1000 with blue fill.
  • Highlight values >= 1500 with bold text.
  • Highlight values >= 2000 with red fill and bold text.

If the values are D1=900, D2=1200, D3=1600, D4=2100, D5=1800, what formatting will cell D4 have?

ARed fill and bold text
BBlue fill only
CBold text only
DNo formatting
Attempts:
2 left
💡 Hint

Check which rules apply to 2100 and how overlapping formats combine.

📊 Formula Result
expert
2:30remaining
What is the output of this formula used in a conditional formatting rule?

In cell E1, you apply this conditional formatting formula:

=AND(E1>10, OR(E1<20, E1=25))

What is the result (TRUE or FALSE) when E1 contains the value 25?

AFALSE
BTRUE
CSyntax Error
D#VALUE! Error
Attempts:
2 left
💡 Hint

Evaluate the AND and OR conditions step by step.