Feb 13 2024 05:17 AM
Please can someone help ?
I would like to conditionally format Cells in Column B, based on a date being entered in Column C of the same row.
When a deadline date is first entered in Column B, it will turn red. It will turn green when a date is entered in Column C.
I.e - B2 = Red as no date entered in C2.
- B13 - Green as date entered in C13.
Thank you for any help 🙂
Feb 13 2024 06:17 AM
SolutionSelect the cells in the data range of the Deadline Date column, from B2 down.
B2 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($B2<>"", $C2="")
Click Format...
Activate the Fill tab.
Select red as highlight color.
Click OK, then click OK again.
Repeat these steps, but with the formula
=$C2<>""
and green as fill color.
Feb 13 2024 06:39 AM
Feb 13 2024 06:17 AM
SolutionSelect the cells in the data range of the Deadline Date column, from B2 down.
B2 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($B2<>"", $C2="")
Click Format...
Activate the Fill tab.
Select red as highlight color.
Click OK, then click OK again.
Repeat these steps, but with the formula
=$C2<>""
and green as fill color.