Conditional Formatting: Change color next column

sammipd

Board Regular
Joined
Jun 6, 2010
Messages
67
I used Conditional Formatting to color code the Task List by Due Date (overdue, last week, this week, next week). How can I use it to remove the colors when any text is placed in the Completed column?

<tbody>
</tbody>
CompletedDueTASK
10/7/2017data
10/24/2017data
10/24/2017
data
11/1/2017data
11/2/2017data
11/3/2017comm
11/7/2017data
11/8/2017data
11/8/2017data
10/4/201710/4/2017misc
10/5/201710/5/2017data
10/10/201710/6/2017data
10/5/201710/6/2017data

<tbody>
</tbody>
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Amend your current Conditional Formatting to check for a value in that column.
So, if your Completed Column is column A, the CF might look something like:
Code:
=AND(A2="",[I]current formula[/I])
 
Upvote 0
Select the due date cells and use this formula where A2 is the completed column, adjust to match your data. Do not select any format
Code:
=LEN(A2)>0

In the rules manager move the rule you just created above the rule to format the due date and click stop if true.
 
Upvote 0

Forum statistics

Threads
1,214,978
Messages
6,122,545
Members
449,089
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top