Forum Discussion
AustinTurek
Sep 17, 2024Copper Contributor
Conditional Formatting Based on Date & Status
Hello! I need some help getting my conditional formatting to function properly. I would like the cells in the "Due Date" column to highlight red if the date is less than today AND the "Status" co...
- Sep 17, 2024
Select from D2 down. D2 should be the active cell in the selection.
On the Home tab of the ribbon, click Conditional Formatting > New Rule...
Select 'Use a formula to determine which cells to format'.
Enter the formula=AND($F2<>"Done", $D2<>"", $D2<TODAY())
Click Format...
Activate the Fill tab.
Select red as fill color.
Click OK, then click OK again.
HansVogelaar
Sep 17, 2024MVP
Select from D2 down. D2 should be the active cell in the selection.
On the Home tab of the ribbon, click Conditional Formatting > New Rule...
Select 'Use a formula to determine which cells to format'.
Enter the formula
=AND($F2<>"Done", $D2<>"", $D2<TODAY())
Click Format...
Activate the Fill tab.
Select red as fill color.
Click OK, then click OK again.
- AustinTurekSep 17, 2024Copper Contributor
HansVogelaar Much appreciated! Works perfectly!