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.
Check which condition matches first when reading rules top to bottom.
75 is not >= 90, so Rule 1 is false. Rule 2 checks if value >= 70, which is true, so cell is colored yellow. Rule 3 is not checked because Rule 2 matched.
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?
Remember the formula is evaluated for each cell in column B, so relative references matter.
Using =B1 < A1 with relative references allows the formula to adjust for each row. The other options fix rows or columns incorrectly, causing wrong comparisons.
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?
Check which values in the range are greater than 25.
Values greater than 25 are 30, 40, and 50, which are 3 cells. The formula adjusts for each cell in the range.
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?
Think about fixing the range and using relative reference for the cell being checked.
Option A fixes the range absolutely and uses a relative reference for the cell to check duplicates correctly for each cell in D1:D100.
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?
Think about rule order and stopping behavior in conditional formatting.
Excel applies conditional formatting rules in order and stops at the first true condition if 'Stop If True' is enabled. So the first matching rule's format applies.