Conditional Formatting excluding weekends

Yoohoo567

New Member
Joined
Nov 24, 2021
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Hi - I've searched to try and solve it myself but I'm getting more confused.

I need a date in Column A to be RAG rated to indicate deadline. It needs to be green when date entered, turn yellow on day 6 and red on day 10. I need to exclude weekends which is the part I can't get to work.

Would appreciate any help - Thank you
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Hi & welcome to MrExcel.
Do you mean the date needs to turn yellow when it's 6 working days from today?
 
Upvote 0
Ok, how about
+Fluff 1.xlsm
A
1
209/12/2021
306/12/2021
401/12/2021
5
6
7
8
Main
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A2:A11Expression=AND(A2>=TODAY(),A2<=WORKDAY(TODAY(),6))textNO
A2:A11Expression=AND(A2>=TODAY(),A2<=WORKDAY(TODAY(),10))textNO
 
Upvote 0
Thank you - I can't seem to get that to work. I think I probably wasn't clear as you have used dates in the future and mine are all today or in the past.

For example I will enter today's date in Column A when I receive an application - I would like it then to turn green.
When 6 working days have past, then to turn yellow
When 10 working days have past to turn red.

Would that be a different formula or am I just entering this incorrectly (which wouldn't surprise me as it has now frazzled my brain)
 
Upvote 0
Ok, how about
+Fluff 1.xlsm
A
1
224/11/2021
317/11/2021
416/11/2021
511/11/2021
610/11/2021
7
8
9
10
Main
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A2:A11Expression=AND(A2<>"",NETWORKDAYS(A2,TODAY())>10)textNO
A2:A11Expression=AND(A2<>"",NETWORKDAYS(A2,TODAY())>6)textNO
A2:A11Expression=A2<>""textNO
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,826
Messages
6,121,797
Members
449,048
Latest member
greyangel23

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