0
0
Excelspreadsheet~5 mins

Conditional formatting with dates in Excel - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
A=A1<=TODAY()
B=A1<TODAY()
C=A1>TODAY()
D=A1=TODAY()
What does the formula =A1>TODAY()+7 highlight?
ADates before today
BDates within the next 7 days
CDates more than 7 days in the future
DDates exactly 7 days from today
How do you start creating a conditional formatting rule for dates?
AType a formula directly in the cell
BSelect cells, then choose Conditional Formatting > New Rule > Use a formula
CUse the Sort feature
DChange the cell format to Date
Which function gives the current date in Excel?
ATODAY()
BDATE()
CNOW()
DCURRENTDATE()
What happens if you use relative cell references incorrectly in conditional formatting formulas?
AFormatting may apply to wrong cells
BExcel shows an error message
CFormula automatically fixes itself
DNothing happens
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.