Recall & Review
beginner
What is conditional formatting in Excel?
Conditional formatting lets you change how cells look based on their values or other rules. For example, you can color dates that are past today in red.
Click to reveal answer
beginner
How do you highlight dates that are before today using conditional formatting?
Use a formula rule with
=A1<TODAY() where A1 is the first cell in your range. This colors all dates before today.Click to reveal answer
intermediate
What formula highlights dates within the next 7 days?
Use
=AND(A1>=TODAY(), A1<=TODAY()+7). This checks if the date is today or up to 7 days ahead.Click to reveal answer
beginner
Why use
TODAY() in date conditional formatting?TODAY() gives the current date. It updates automatically every day, so your formatting stays correct without changes.Click to reveal answer
intermediate
How to apply conditional formatting to a whole column of dates?
Select the whole column, create a new rule with a formula like
=A1<TODAY(), and make sure the formula uses the first cell of the column. Excel applies it to each cell correctly.Click to reveal answer
Which formula highlights dates that are exactly today?
✗ Incorrect
The formula =A1=TODAY() checks if the date in A1 is exactly today.
What does the formula =A1>TODAY()+7 highlight?
✗ Incorrect
It highlights dates that are more than 7 days after today.
How do you start creating a conditional formatting rule for dates?
✗ Incorrect
You create conditional formatting rules by selecting cells and choosing Conditional Formatting > New Rule > Use a formula.
Which function gives the current date in Excel?
✗ Incorrect
TODAY() returns the current date without time.
What happens if you use relative cell references incorrectly in conditional formatting formulas?
✗ Incorrect
Incorrect relative references can cause formatting to apply incorrectly across the range.
Explain how to use conditional formatting to highlight dates that are overdue (before today).
Think about how to compare each date to today's date.
You got /4 concepts.
Describe the role of the TODAY() function in date-based conditional formatting.
TODAY() keeps your formatting dynamic.
You got /4 concepts.