Conditional Formatting excluding weekends

tanky

New Member
Joined
May 22, 2010
Messages
14
Hi

I'd like to track the status of reports when they are due.

When the meetings have taken place, the reports/minutes need to be drafted by 5 working days and completed by 15 working days from the date of the meeting

So currently I have in excel:

A1 B1 C1
Date of meeting Date Report Drafted Date Report Completed

I would like to use conditional formating so that when the date is entered to the B1 cell and it is more than 5 working days (exclude weekends - Sat and Sun) then the cell would flag up red. If the draft is completed before 5 working days from the meeting then green.

Any help will be grateful
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
The following two formulas in conditional formating will give you the results you want

Condition 1
=NETWORKDAYS(A1,B1)>5

Condition 2
=AND(NETWORKDAYS(A1,B1)>0,NETWORKDAYS(A1,B1)<6)

Hope this helps,
Gary
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,684
Members
449,116
Latest member
HypnoFant

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